我正在尝试制作一个包含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>