ViewFlipper在使用Listview时无法正常工作

时间:2013-03-06 09:25:26

标签: android listview viewflipper

我在android

中使用此代码进行滑动,onTouch事件
<ViewFlipper
        android:id="@+id/flipper"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/tabBTBar" >

        <LinearLayout
            android:id="@+id/first"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <ListView
                android:id="@+id/cat_listLV"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:divider="@color/grey"
                android:dividerHeight="1dp" >
            </ListView>
        </LinearLayout>

        <LinearLayout
            android:id="@+id/Second"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#C0C0C0"
            android:gravity="center"
            android:orientation="vertical" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:src="@drawable/ic_launcher" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:src="@drawable/ic_launcher" />
        </LinearLayout>
    </ViewFlipper>

当我运行此代码时,它只显示第一个LinerLayout中的listview。

当我使用而不是在第一个Linearlayout中时,它将正常工作。

请建议我如何做到这一点。 我想在第一个和第二个中的LinearLayout ..中显示Listview。

1 个答案:

答案 0 :(得分:2)

在您的java文件中添加此方法。

@Override
public boolean dispatchTouchEvent(MotionEvent motionEvent) {
    super.dispatchTouchEvent(motionEvent);
    return gestureDetector.onTouchEvent(motionEvent);
}

而不是使用onTouchEvent()方法