E/AndroidRuntime(709): java.lang.NullPointerException
理由はわかりませんが、「はい」と「いいえ」というタイトルのボタンを呼び出そうとすると、いつでも取得し続けます。ボタンは xml レイアウトで作成され、findViewById
メソッドを使用して呼び出されます。これは、同じプログラムで適切に動作するいくつかのボタンで使用したのと同様の手法です。これらのボタンとその他のボタンの唯一の違いは、それらの xml コードが main.xml ではない別のレイアウト ファイルに保持されていることです。
ボタンのみを表示し、Java コード内で呼び出さない場合は、必要に応じて表示されます。setClickable()
やなどの Java コードでそれらに何かを適用しようとすると、エラーが発生します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>