7

我在 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>

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

更新

尝试两者:

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);
}
4

1 回答 1

11

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

android:overScrollMode="never"

如果上述解决方案不起作用,请尝试在onCreate()Activity 的方法或设置 UI 的任何位置添加它:

mNavigationView.setVerticalFadingEdgeEnabled(false);

更新

经过更多测试后,我发现确实,到目前为止答案中发布的解决方案都不起作用。但是,我发现这行得通:

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

onCreate()初始化导航抽屉后,将其添加到您的方法中。

于 2016-01-15T13:50:01.807 回答