在NavigationView的頂部有陰影,我該如何刪除它?
我對我的英語是太可怕了,感謝您的幫助!
此代碼是我片段佈局遺憾。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="end">
<com.wk.reservation.view.PullListView
android:id="@id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view_right"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
app:itemBackground="@android:color/white">
<include layout="@layout/nav_right_header_main" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>`
你在哪裏使用該導航欄把你的整個XML文件的源代碼。 –
謝謝,這是android支持的bug,我用的版本是23.2.1,當我改成23.1.1時,影子消失了。 – DonnieHe