DrawerLayout のテキストを単純に変更したいのですが、達成しようとするすべてが NullPointerException になります
誰かが私を助けることができますか?私はレイアウトを通過することに成功することはできません..
Activity_main.xml
<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"
app:headerLayout="@layout/nav_header_main" app:menu="@menu/activity_main_drawer" />
私が成功する唯一のことは、NavigationView を取得することです。
NavigationView nv = (NavigationView) findViewById(R.id.nav_view);
それから私はここで立ち往生しています!
私の nav_header_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="@dimen/nav_header_height"
android:background="@drawable/icon_top"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:theme="@style/ThemeOverlay.AppCompat.Dark" android:orientation="vertical"
android:gravity="bottom">
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:src="@android:drawable/sym_def_app_icon" android:id="@+id/imageView" />
<TextView android:layout_width="match_parent" android:layout_height="wrap_content"
android:id="@+id/labelConnection"
android:paddingTop="@dimen/nav_header_vertical_spacing" android:text="Se connecter..."
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:onClick="onClick"
android:clickable="true" />
nv.findViewById(R.id.labelConnection) を取得しようとすると、null ポインター例外が発生します。
どうして??
編集:headerLayoutを膨らませる解決策を見つけましたが、次の結果になりました:https://gyazo.com/4450a3401a30d4000a3021a0a1cb6ea9
それは十分ではありません..最初のヘッダーを削除する方法がわかりません...