我不知道为什么,但我一直E/AndroidRuntime(709): java.lang.NullPointerException
在尝试调用标题为“是”和“否”的按钮。这些按钮是在 xml 布局中创建并使用该findViewById
方法调用的,这是我在同一程序中的几个正常工作的按钮中使用的类似技术。这些按钮与其他按钮的唯一区别是它们的 xml 代码保存在一个单独的布局文件中,该文件不是 main.xml。
如果我只想显示按钮而不在 java 代码中调用它们,它们将按应有的方式显示。当我尝试在 java 代码中对它们应用任何东西时会发生错误,例如setClickable()
and setOnClickListener()
。
下面的代码概述了 xml 中按钮和布局的创建,java 代码显示了一个在调用时创建弹出窗口的方法。
Java 代码:
private void getLogoutOption() {
LayoutInflater layoutInflater = (LayoutInflater)getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View popupView = layoutInflater.inflate(R.layout.logoutoption, null);
final PopupWindow logoutoption = new PopupWindow(popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
Button yes = (Button) findViewById (R.id.yes);
yes.setClickable(true);
yes.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
logoutoption.dismiss();
switchActivity(8);
}
});
Button no = (Button) findViewById (R.id.no);
no.setClickable(true);
no.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
logoutoption.dismiss();
}
});
logoutoption.showAsDropDown(search, 50, -30);
}
XML 代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent" >"
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/menu_default" >
<TextView
android:id="@+id/logoutmessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="Are you sure you would like to logout?"
android:textColor="@color/gold" />
<Button
android:id="@+id/yes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/logoutmessage"
android:layout_centerInParent="true"
android:text="YES"
android:textColor="@color/green" />
<Button
android:id="@+id/no"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/logoutmessage"
android:layout_toRightOf="@id/yes"
android:text="NO"
android:textColor="@color/red" />
</RelativeLayout>
</RelativeLayout>