0

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>
4

3 に答える 3

2
Button yes = (Button) findViewById (R.id.yes); 

する必要があります

Button yes = (Button) popupView.findViewById (R.id.yes); 

デフォルトでfindViewById()は、 はコンテンツ ビューで指定された ID を持つビューを検索します (たとえば、 を使用setContentView(R.layout.main)した場合、それらのビューの main.xml 構造を検索します)。膨張したレイアウトを検索している場合はfindViewById()、その特定の膨張したレイアウトを呼び出す必要があります。

于 2012-09-19T15:40:21.560 に答える
1

変化する:

Button yes = (Button) findViewById (R.id.yes);
Button no = (Button) findViewById (R.id.no);

に:

Button yes = (Button) popupView.findViewById (R.id.yes);
Button no = (Button) popupView.findViewById (R.id.no);
于 2012-09-19T15:41:00.690 に答える
1

こんにちは問題は、Activity.In Activity ビューで setContentView(R.layout.main) によって作成されたときに ID を取得していることです。あなたのコードでは、新しいビューを膨らませているので、使用する必要があります

ボタン はい = (ボタン)popupView.findViewById (R.id.yes);

于 2012-09-19T15:42:39.820 に答える