gpt4 book ai didi

Android 支持 v23.1.0 更新中断 NavigationView 获取/查找 header

转载 作者:IT老高 更新时间:2023-10-28 21:55:20 31 4
gpt4 key购买 nike

到目前为止,我一直在使用 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在更新中并没有看到任何我认为会导致这种情况的东西。

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

最佳答案

使用设计库 v 23.1.0NavigationView 可与 RecyclerView 一起使用。
Header 现在也是一种行。

这意味着标题不能立即在 View 层次结构中可用
如果您使用诸如 navigationView.findViewById(XXX) 之类的方法来获取标题内的 View ,则可能会导致问题。

Google Tracker 中有一个错误。 .

编辑 2015 年 12 月 10 日:设计库 23.1.1

23.1.1 引入了一个新的 API,用于通过 getHeaderView() 检索 NavigationView 的标题 View

23.1.1 之前

解决方法 fot 23.1.0 可以使用 addOnLayoutChangeListener。类似的东西:

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

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

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

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

  • 以编程方式扩展 headerView。

使用这样的东西:

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

关于Android 支持 v23.1.0 更新中断 NavigationView 获取/查找 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33161345/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com