我曾用的LinearLayout垂直方向。 它有两个孩子的一个ViewFlipper和其他的ListView。 ListView控件可以有任意数量的项目。 当UI渲染和我尝试在屏幕上垂直滚动ViewFlipper保持其可用的地方完整和ListView noves。 我想ViewFlipper也向上滚动,而不是保持完整。
这是我的XML代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ViewFlipper
android:id="@+id/menuflipper"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoStart="true"
android:flipInterval="3000"
android:visibility="gone" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/nature3" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/nature2" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/nature3" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/nature2" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/nature3" />
</ViewFlipper>
<ListView
android:id="@+id/categorylist"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>