我有MainActivite。我尝试将文本设置为TextView tvUserName。 直到今天一切都很好,但现在我无法通过findViewById访问此变量。此变量的值为null。
也许这是一个错误的代码,并且在系统库更新后它已停止正常工作。
我没有做任何特别的事情,也不知道该怎么做。
Caused by: java.lang.NullPointerException
当我尝试将文本设置为此变量时
private static TextView tvUserName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
currentLocale = getResources().getConfiguration().locale;
LocaleHelper.onCreate(this, currentLocale + "");
setContentView(R.layout.activity_main);
context = this;
fragmentManager = getSupportFragmentManager();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(MainActivity.this);
navigationView.setEnabled(false);
DrawerLayout mDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
mDrawer.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
tvUserName = (TextView) findViewById(R.id.navUserName);
//?????
}
--------- activity_main.xml ------------------
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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"/>
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
------- nav_header_main -----------------
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:paddingLeft="16dp"
android:background="@drawable/side_nav_bar"
android:theme="@style/ThemeOverlay.AppCompat.Dark" android:orientation="vertical"
android:gravity="bottom">
<TextView android:layout_width="match_parent" android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing" android:text="Phone4Pay"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="2dp"
android:paddingBottom="15dp" >
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/navUserName"/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:3)
navigationView = (NavigationView)findViewById(R.id.nav_header_main);
View headerLayout = navigationView.getHeaderView(0);
tvUserName = (TextView) headerLayout.findViewById(R.id.navUserName);
答案 1 :(得分:2)
TextView tv = (TextView)navigationView.findViewById(id);
原因TextView位于headerLayout中,headerLayout是navigationView的根布局。
这个答案是错误的。
答案 2 :(得分:0)
主要原因是更改支持库的版本
来自
compile 'com.android.support:design:23.0.1'
到
compile 'com.android.support:design:23.1.1'
但在旧版本(23.0.1)中,此代码可以正常工作:
tvUserName = (TextView) findViewById(R.id.navUserName);
并且此代码不能正常工作“无法识别方法getHeaderView”
View headerLayout = navigationView.getHeaderView(0);
更改支持库版本时要小心,开发人员可以在没有任何警告的情况下更改所有内容。没有背部支持。