我正在開發一個android應用程序,它需要DrawerLayout低於工具欄。我已經實現了這個功能,但是即使在刪除標題之後,仍可以看到NavigationView的標題,即Status Bar 24dp
。 有沒有辦法去除?Android隱藏NavigationView標題
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.v4.widget.DrawerLayout
android:layout_marginTop="?android:attr/actionBarSize"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.design.widget.NavigationView
android:paddingBottom="0dp"
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@null"
app:menu="@menu/activity_home_drawer"/>
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
已經嘗試過,沒有運氣。順便說一下,你會看到抽屜裏的頂部灰色條。那就是問題所在。我怎樣才能讓它變成半透明的? – Max
是否將標題佈局的背景顏色更改爲透明? –
它會變得不同嗎?即使我們正在將可見性設置爲「已逝」? – Max