使用viewpager和导航抽屉从左向右滑动

时间:2013-07-29 05:11:03

标签: android android-viewpager ontouchevent navigation-drawer

我有一个viewpager和一个导航抽屉。两者都在水平滑动上执行操作,但如何控制哪一个负责滑动操作?

我的观看者:

Fragment[] allPictures = new Fragment[getNrPictures()];
APicturePageAdapter adapter = new APicturePageAdapter(super.getSupportFragmentManager(), allPictures);
vP = (ViewPager) findViewById(R.id.picPage);
vP.setAdapter(adapter);

通过从右向左滑动,我可以浏览图片。工作良好。 然后我添加了一个导航抽屉:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/PicturePageContentLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="2dp"
        android:orientation="vertical" >

        .......
    </LinearLayout>

    <LinearLayout
        android:id="@+id/left_drawer_ll"
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <TextView
               ... content
            </TextView>

    </LinearLayout>

打开和关闭抽屉工作正常,一切似乎都在工作。但是,当我触摸抽屉并向左滑动时,我希望抽屉自己关闭,而不是取景器翻转到上一张图片。如何控制谁负责onTouch事件?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我所知道的唯一解决方案是使用droidux库。

http://www.youtube.com/watch?v=N0HNMK8xewE