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ファイルのソースコードを置きます。 –
ありがとう、それはアンドロイドサポートのバグです、私は23.2.1に変更すると、私はバージョンが23.2.1を使用して、23.1.1に影が消えます。 – DonnieHe