我正在使用导航视图活动,并且在尝试滚动时底部有一个发光。是否可以删除它?
这是主要的活动xml代码,我已经使用了android:overScrollMode="never"
和android:fadingEdge="none"
,这已被弃用。他们都没有工作。在三星Galaxy S3,Android 4.1.1上测试过。
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<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:orientation="vertical"
app:headerLayout="@layout/nav_header_main">
<include layout="@layout/fragment_test" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
另外,在代码中
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.setOverScrollMode(DrawerLayout.OVER_SCROLL_NEVER);
drawer.setVerticalFadingEdgeEnabled(false);
答案 0 :(得分:1)
您只需要在布局xmlL中将属性fadeEdge设置为none。
android:fadingEdge="none"
也尝试这个
android:overScrollMode="never"