我在 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);
}