3

我正在尝试制作一个布局,ViewSwitcher其中显示的第一个视图是屏幕中心的旋转进度指示器,然后切换到线性布局,一旦加载,就会添加内容。

问题是我希望旋转指示器位于中心,因此我将所有内容设置为match_parent使其可以在屏幕上居中。但是,这不起作用,它给了我警告:

这个 ViewSwitcher 应该使用 android:layout_height="wrap_content"

然后显示布局,就好像它被设置为一样wrap_content。如何解决此问题,以使旋转指示器显示在屏幕中央?

谢谢。

我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFF"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/svXorBox"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <ViewSwitcher
            android:id="@+id/vsCollection"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <LinearLayout
                android:id="@+id/llBusy"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center" >

                <ProgressBar
                    android:id="@+id/progressBar1"
                    style="?android:attr/progressBarStyleLarge"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/llCollection"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >
            </LinearLayout>
        </ViewSwitcher>
    </ScrollView>

</LinearLayout>
4

0 回答 0