在DrawerLayout中更改TextView

时间:2015-12-29 20:41:33

标签: android android-navigationview

我想简单地更改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

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

1 个答案:

答案 0 :(得分:0)

你需要这样做

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

删除第一个标题视图:

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

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