2
如何在NavigationView
中更改標題視圖高度?我旁邊的xml: activity_main.xml中如何在NavigationView中更改標題高度?
<android.support.v4.widget.DrawerLayout
android:id="@+id/dlDrawerContainer"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".activity.MainActivity"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!-- Some data -->
<!-- Drawer -->
<android.support.design.widget.NavigationView
android:fitsSystemWindows="true"
android:id="@+id/nvNavigation"
android:layout_width="wrap_content"
android:maxWidth="400dp"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/navigation_header"/>
</android.support.v4.widget.DrawerLayout>
navigation_header.xml
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:maxWidth="400dp"
android:maxHeight="100dp"
android:scaleType="matrix"/>
但NavigationView
忽略所有維度屬性,並顯示了默認大小頭。如何解決它?
如何使用WRAP_CONTENT爲'ImageView'。它不適用於'NavigationView'。我的ImageView'填充最大父母高度都一樣。 –
對不起,但我不明白你想達到什麼。可以編輯你的問題,並澄清什麼是預期的結果,也許與圖像? –