0

我想简单地更改我的 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) 时,我有一个空指针异常。

为什么??

编辑:我找到了膨胀 headerLayout 的解决方案,但后来我得到了这个结果:https ://gyazo.com/4450a3401a30d4000a3021a0a1cb6ea9

这还不够好..我不知道如何删除第一个标题...

4

1 回答 1

0

你需要这样做

View headerView = nv.getHeaderView(0);
headerView.findViewById(R.id.labelConnection);

要删除第一个标题视图,请执行以下操作:

nv.removeHeaderView(nv.getHeaderView(0));

但请确保检查重复的标头,否则会抛出 indexOutOfBoundException。

于 2015-12-29T21:15:35.460 回答