导航抽屉菜单滚动效果

时间:2016-01-15 13:45:25

标签: android navigation-drawer material-design android-navigationview

我在DrawerLayout中使用NavigationView作为我的应用程序的导航菜单,这里是xml:

<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/drawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        android:foreground="?android:attr/selectableItemBackground"
        android:theme="@style/NavigationDrawerStyle"
        app:headerLayout="@layout/nav_header_main"
        app:itemIconTint="@color/textColor"
        app:itemTextColor="@color/textColor"
        app:menu="@menu/activity_main_drawer" />
    </android.support.v4.widget.DrawerLayout>

问题:我甚至没有足够的项目可以滚动但我在尝试滚动时看到了这个效果,我想禁用此效果,谢谢。
Scrolling effect

更新

尝试两者:

android:overScrollMode "never" in NavigationView

navigationView.setVerticalFadingEdgeEnabled(false);

没用。

我在onCreate()中调用了以下方法:

public void setupDrawerLayout() {
    drawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);
    ActionBarDrawerToggle drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, toolBar, R.string.drawer_open, R.string.drawer_close);
    drawerLayout.setDrawerListener(drawerToggle);
    drawerToggle.syncState();

    navigationView = (NavigationView) findViewById(R.id.nav_view);
    navigationView.setNavigationItemSelectedListener(this);
}

1 个答案:

答案 0 :(得分:11)

您正尝试禁用滚动阴影。 尝试将其添加到NavigationView

android:overScrollMode="never"

如果上述解决方案无法解决问题,请尝试在您的“活动”的onCreate()方法或设置用户界面的任何位置添加此解决方案:

mNavigationView.setVerticalFadingEdgeEnabled(false);

<强>更新

经过一些更多测试后,我发现确实,到目前为止在答案中发布的解决方案都无效。但是,我发现这个有用:

for (int i = 0; i < navigationView.getChildCount(); i++) {
    navigationView.getChildAt(i).setOverScrollMode(View.OVER_SCROLL_NEVER);
}

在初始化导航抽屉后,在onCreate()方法中添加它。