gpt4 book ai didi

android - ProgressBar出现在Android的整个屏幕上

转载 作者:行者123 更新时间:2023-11-29 00:59:32 26 4
gpt4 key购买 nike

我正在尝试在 Navigation Drawer Activity 中实现 ProgressBar,但它像这样覆盖了整个屏幕。

enter image description here

我尝试在 ProgressBar 中设置 style="?android:attr/progressBarStyleSmall" 但没有成功

我的 XML 文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
layout="@layout/app_bar_home_screen"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_home_screen"
app:menu="@menu/activity_home_screen_drawer" />

<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleSmall"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true" />

</android.support.v4.widget.DrawerLayout>

这个问题不是Android ProgressBar size take whole screen的重复问题

最佳答案

终于完成了

当创建新的 NavigationDrawer Activity 时,Android Studio 会生成 4 个 XML 文件。早些时候,我在 activity_home_screen.xml 中实现了 ProgressBar。现在尝试在 content_home_screen.xml 中实现后,它起作用了

Note: HomeScreenActivity is my Activity name

我的 content_home_screen.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".HomeScreenActivity"
tools:showIn="@layout/app_bar_home_screen">

<LinearLayout
android:id="@+id/header_search"
android:layout_width="match_parent"
android:layout_height="80dp"
android:orientation="horizontal"
android:paddingEnd="16dp"
android:weightSum="5">

<!-- Some Code.... -->

</LinearLayout>

<View
android:id="@+id/content_view"
android:layout_width="wrap_content"
android:layout_height="2dp"
android:layout_below="@id/header_search"
android:background="@drawable/gradient_view" />

<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleSmall"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true" />

</RelativeLayout>

关于android - ProgressBar出现在Android的整个屏幕上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52223350/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com