gpt4 book ai didi

android - FrameLayout 中的 ProgressBar 太大了

转载 作者:行者123 更新时间:2023-11-29 15:51:21 26 4
gpt4 key购买 nike

我正在尝试在我的 Activity 中实现一个 ProgressBar,但进度条很大(参见屏幕截图)。 enter image description here在我的布局中编辑宽度或高度属性不会改变任何事情。

这是我目前正在使用的代码。

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_height="match_parent" />

<ProgressBar
android:id="@+id/main_progressBar"

android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#111"
android:choiceMode="singleChoice"
android:dividerHeight="0dp" />

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

你有什么建议吗?

提前致谢。

最佳答案

试试这个

   <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_height="match_parent" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ProgressBar
android:id="@+id/main_progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
</RelativeLayout>

<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#111"
android:choiceMode="singleChoice"
android:dividerHeight="0dp" />

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

关于android - FrameLayout 中的 ProgressBar 太大了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29885064/

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