Android 支持 v23.1.0 更新中断 NavigationView get/find header

Android support v23.1.0 update breaks NavigationView get/find header

到目前为止,我一直在使用 v23.0.1 支持库,没有出现任何问题。现在,当我切换到新的 v23.1.0 库时,抽屉布局中的小部件出现空指针。

mNavigationView = (NavigationView) findViewById(R.id.navigation_view);    
TextView username = (TextView) mNavigationView.findViewById(R.id.username_textView);
//       ^^^^^^^^ is now null when using new library
// which causes the following to fail
username.setText(mUser.getName());

activity布局

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context=".MainActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <include layout="@layout/toolbar" />

    ...

</LinearLayout>

<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/drawer_header"
    app:menu="@menu/drawer_items" />

</android.support.v4.widget.DrawerLayout>

drawer_header.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="150dp"
android:orientation="vertical">

   <TextView
    android:id="@+id/username_textView"
    android:layout_width="match_parent"
    android:layout_height="0dp" />

    ...

</LinearLayout>

只需更改 gradle 文件以使用旧版本即可使其立即正常工作,因此我认为我的代码没有任何可怕的错误。我检查了更新中的 revisions,没有发现任何我认为会导致此问题的内容。

这肯定也会影响到其他人,有什么线索吗?

使用 xml 将 header 视图附加到导航抽屉似乎目前已损坏。解决方案是手动膨胀并附加视图。

activity布局

<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/drawer_header" <!-- remove this line -->
    app:menu="@menu/drawer_items" />

然后在您的代码中通过执行以下操作膨胀并附加 header。

NavigationView navigationView = (NavigationView) findViewById(R.id.navigation_view);
View drawerHeader = navigationView.inflateHeaderView(R.layout.drawer_header);

TextView username = (TextView) drawerHeader.findViewById(R.id.username_textView);

在新的 NavigationView 中,header 现在是 RecyclerView 的行类型,以便您或任何人通过其 [=13= 找到 view ] 你需要解决它并使用 addOnLayoutChangeListener 侦听器然后你可以找到 view 我知道它应该记录在某处但是 android 就像我一样!。

使用设计库 v 23.1.0 NavigationViewRecyclerView 一起工作。
Header 现在也是一种行。

这意味着 header 无法在视图层次结构中立即可用
如果您使用 navigationView.findViewById(XXX) 之类的方法在 header.

中获取视图,则可能会导致问题

Google Tracker 中存在错误。

编辑 12/10/2015:设计库 23.1.1

23.1.1 引入了一个新的 API,用于检索具有 getHeaderView()

的 NavigationView 的 header 视图

23.1.1 之前

23.1.0 的解决方法可以使用 addOnLayoutChangeListener。类似于:

navigationView.addOnLayoutChangeListener( new View.OnLayoutChangeListener()
{
    @Override
    public void onLayoutChange( ... )
    {
        navigationView.removeOnLayoutChangeListener( this );

        View view = navigationView.findViewById( ... );
    }
} );

另一种可能的解决方法是:

  • 从 xml 中删除 app:headerLayout 属性,然后以编程方式添加 header。

  • 以编程方式膨胀 header视图。

像这样使用:

View headerLayout = navigationView.inflateHeaderView(R.layout.navigation_header);
headerLayout.findViewById(xxx);

这是 23.1.0 的错误

23.1.1 已修复

https://plus.google.com/+AndroidDevelopers/posts/ebXLByBiEBU

我已经从 Android sdk 管理器更新了构建工具,然后 23.1.0 也适合我。

我正在使用

buildToolsVersion "23.0.2"

在此之前是 23.0.1。

并且不需要使用

(View)navigationView.findViewById(R.id.idOfViewFromHeaderView);

在你的activity中你可以直接使用

(View)findViewById(R.id.idOfViewFromHeaderView);