如何实现可以滑动整个活动内容的Android导航抽屉?

时间:2016-10-07 07:31:03

标签: android android-activity android-actionbar navigation-drawer

请有人建议我如何实现导航抽屉滑动完成屏幕的活动。

enter image description here

OR

enter image description here

先谢谢。

*** ---------

-------- *:**  我找到了解决方案。

使用此lib易于使用和处理

  

https://github.com/adamrocker/simple-side-drawer

1 个答案:

答案 0 :(得分:0)

您可以尝试将此布局用于抽屉活动。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:elevation="7dp"
    >

    <RelativeLayout
        android:id="@+id/content_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >

    </RelativeLayout>

    <FrameLayout
        android:id="@+id/drawer_holder"
        android:layout_width="@dimen/drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        >

        <ListView
            android:id="@+id/drawer_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />

    </FrameLayout>

</android.support.v4.widget.DrawerLayout>

并将DrawerLayout.DrawerListener添加到此DrawerLayout

drawerLayout.addDrawerListener(new DrawerLayout.DrawerListener() {
            @Override
            public void onDrawerSlide(View view, float slideOffset) {
                drawerView.setX(drawerHolder.getWidth() * (1 - slideOffset));
                contentLayout.setX(drawerHolder.getWidth() * slideOffset);
            }

            @Override
            public void onDrawerOpened(View view) {
            }

            @Override
            public void onDrawerClosed(View view) {
            }

            @Override
            public void onDrawerStateChanged(int newState) {
            }
        });

添加listner后放入此代码。

drawerLayout.closeDrawer(drawerHolder);
mainDrawerView.setX(0);
contentLayout.setX(0);

希望这会有所帮助。