FrameLayout中的ProgressBar太大了

时间:2015-04-26 23:53:45

标签: android layout progress-bar android-framelayout

我正在尝试在我的活动中实现<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> ,但进度条很大(参见截图)。 enter image description here 在我的布局中编辑宽度或高度属性不会改变任何东西。

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

{{1}}

你有任何提示吗?

提前致谢。

2 个答案:

答案 0 :(得分:4)

试试这个

   <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>

答案 1 :(得分:0)

您是否故意为FrameLayout添加结束标记?

我想你想要这个布局。

    <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" />
     </FrameLayout