到目前为止,我一直在使用 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());
活动布局
<?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,但没有看到任何我认为会导致此问题的内容。
当然这也会影响其他人,任何线索?
答案 0 :(得分:41)
使用设计库 v 23.1.0 ,NavigationView
与RecyclerView
一起使用。
此外,Header
现在是一种行。
这意味着标题标题无法在视图层次结构中立即显示
如果您使用navigationView.findViewById(XXX)
之类的方法来获取标题内的视图,则可能会导致问题。
Google Tracker中存在错误。
编辑12/10/2015:设计库23.1.1
23.1.1引入了一个新的API,用于使用getHeaderView()
检索NavigationView的标题视图在23.1.1之前
变通方法图片23.1.0 可以使用addOnLayoutChangeListener
。 Somenthing喜欢:
navigationView.addOnLayoutChangeListener( new View.OnLayoutChangeListener()
{
@Override
public void onLayoutChange( ... )
{
navigationView.removeOnLayoutChangeListener( this );
View view = navigationView.findViewById( ... );
}
} );
另一种可能的解决方法是:
从xml中删除app:headerLayout
属性,然后以编程方式添加标题。
以编程方式对headerView进行充气。
使用这样的somenthing:
View headerLayout = navigationView.inflateHeaderView(R.layout.navigation_header);
headerLayout.findViewById(xxx);
答案 1 :(得分:11)
似乎使用xml将标题视图附加到导航抽屉当前已损坏。解决方案是手动充气并附加视图。
活动布局
<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" />
然后在您的代码中膨胀并通过执行以下操作附加标题。
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);
答案 2 :(得分:0)
在新的NavigationView
标题现在是RecyclerView
的行类型,以便您或任何人根据您需要的view
找到id
解决它并使用addOnLayoutChangeListener
监听器然后你可以找到view
我知道它应该记录在某个地方,但android就像meh!
答案 3 :(得分:0)
答案 4 :(得分:0)
我已经从Android sdk管理器更新了构建工具,然后23.1.0对我来说也很好。
我正在使用
buildToolsVersion "23.0.2"
在此之前它是23.0.1。
并且无需使用
(View)navigationView.findViewById(R.id.idOfViewFromHeaderView);
在您的活动中,您可以直接使用
(View)findViewById(R.id.idOfViewFromHeaderView);