我有一个 xml 文件,其中包含一个按钮及其称为button/xml
<Button
android:id="@+id/loginButton1"
style="?android:attr/buttonStyleSmall"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/button_background"
android:text="Button" />
我有另一个名为login.xml的布局,其中包含两次 button.xml。
<?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="match_parent"
android:orientation="vertical"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingTop="30dp">
<include
android:id="@+id/loginUser1"
android:layout_width="match_parent"
android:layout_height="30dp"
layout="@layout/button" />
<include
android:id="@+id/loginUser2"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="20dp"
layout="@layout/button" />
</LinearLayout>
现在,当我尝试在我的 Java 类中分别访问每个按钮时,在指向loginUser1时出现错误。错误说NullPointerException。既然我确定 loginUser1 存在,为什么我仍然收到错误消息?
final LinearLayout layout = (LinearLayout)findViewById(R.id.loginUser1); //null pointer exception HERE!
final Button button = (Button)layout.findViewById(R.id.loginButton1);
button.setText("button one");