Android:在Button调用上抛出NullPointerException?

时间:2012-09-19 15:37:00

标签: java android xml

我无法弄清楚为什么,但我一直在E/AndroidRuntime(709): java.lang.NullPointerException,我试图调用标题为yes和no的按钮。这些按钮是在xml布局中创建的,并使用findViewById方法调用,这是我在同一程序中的几个正常工作按钮中使用的类似技术。这些按钮与其余按钮之间的唯一区别是它们的xml代码保存在不是main.xml的单独布局文件中。

如果我只想显示按钮而不是在java代码中调用它们,它们就会显示出来。当我尝试在java代码中对它们应用任何内容时会发生错误,例如setClickable()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 CODE:

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

3 个答案:

答案 0 :(得分: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()

答案 1 :(得分: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);

答案 2 :(得分:1)

嗨问题是你在调用了由SetContentView(R.layout.main)创建的Activity.In Activity视图时获得了id。在你的代码中你要膨胀新视图所以你应该使用

按钮是=(按钮)popupView.findViewById(R.id.yes);