alertDialogue中按钮的OnclickListner上的NullPointerException

时间:2012-10-03 10:06:05

标签: android android-alertdialog onclicklistener

我正在膨胀到alertbuilder的布局有两个按钮。但我无法为此设置onClickListner。这个例外正在发生。请看我的代码。 自定义alertDialogue的XML。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_common"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<EditText
    android:id="@+id/user_text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="7dp"
    android:singleLine="true" >

    <requestFocus />
</EditText>

 <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/search"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Search" />

    <Button
        android:id="@+id/cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Cancel" />
</LinearLayout>

AlertDialog.Builder alert = new AlertDialog.Builder(Myclass.this);
    alert.setTitle("title");
    alert.setIcon(iconImage);
    LayoutInflater inflater =    (LayoutInflater)MyClass.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View view = inflater.inflate(R.layout.search_dialogue, null, false);
    user_input= (EditText)view.findViewById(R.id.user_text);
    Button cancel = (Button) findViewById(R.id.cancel);
    cancel.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub

        }
    });

    if(content.equals("")) {
        user_input.setHint(hint);
    } else {
        user_input.setText(content);
    }
    alert.setView(view);
    searchAlert = alert.create();
    searchAlert.show();

3 个答案:

答案 0 :(得分:5)

您在view之前遗漏了findViewById,排除了view您所指的活动..:

Button cancel = (Button) view.findViewById(R.id.cancel);

答案 1 :(得分:0)

Button cancel = (Button) view.findViewById(R.id.cancel);

答案 2 :(得分:0)

点击这里

user_input= (EditText)view.findViewById(R.id.user_text);//defined view for user_input
Button cancel = (Button) findViewById(R.id.cancel);//not defined view for button

更改为

Button cancel = (Button)view. findViewById(R.id.cancel);