AndroidF垂直滚动时ViewFlipper不滚动?

时间:2014-07-17 09:16:33

标签: android listview viewflipper

我有LinearLayout垂直方向。它有两个子ViewFlipper和Other ListView。 ListView可能包含任意数量的项目。当UI呈现并且我尝试在屏幕上垂直滚动时ViewFlipper保持不变并且ListView在其可用位置移动。我希望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>

0 个答案:

没有答案