自定义对话框onClick错误

时间:2013-07-26 14:30:16

标签: android android-dialog

这是对话框的dialog_date_range.xml布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:foo="http://schemas.android.com/apk/res/com.example.database_fragment"
    android:id="@+id/dialog_body"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:onClick="toggleDateRange"
        android:text="Button" />
</LinearLayout>

在我的活动中,我有:

public void toggleDateRange(View v) {
    if(dialog == null) {
        dialog = new Dialog(context, R.style.PauseDialogAnimation);
        dialog.setCancelable(true);
        dialog.setContentView(R.layout.dialog_date_range);
        dialog.getWindow().getAttributes().windowAnimations = R.style.PauseDialogAnimation;
    }

    if(dialog.isShowing()) {
        dialog.dismiss();
    } else {
        dialog.show();
    }
}

这是我点击按钮时出现的错误:

FATAL EXCEPTION: main E/AndroidRuntime(25357): java.lang.IllegalStateException:   
Could not find a method toggleDateRange(View) in the activity class   
android.view.ContextThemeWrapper for onClick handler on view class   
android.widget.Button    
 with id 'button1'at android.view.View$1.onClick(View.java:3586) 

2 个答案:

答案 0 :(得分:2)

KISS - 保持简单愚蠢(对不起,最后一句话:P)

<Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:text="Button" />

实现onClickListener

        Button btn1 = (Button)findViewById(R.id.button1);
        btn1.setonClickListener(this);

//已实施的方法

    @Override
    public void onClick(View v) {

      switch(v.getId){

         case R.id.button1:{

         //do here whatever you want
  }
 }
}

或者,如果您真的想要这样,那么来自setContentView的VIEW就不是正确的。 我创建了一个新项目并添加了完全相同的代码,它可以工作。检查您是否在视图中设置按钮。

答案 1 :(得分:0)

根据此答案,Android无法在对话框中找到活动的方法。所以解决方案是只为按钮设置onClickListener: java.lang.illegalstateexception could not find a method (view) in the activity class android fragment

将您的代码更改为:

public void toggleDateRange(View v)
{
    if (dialog == null)
    {
        dialog = new Dialog(this, R.style.AppBaseTheme);
        dialog.findViewById(R.id.button1).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v)
            {
                toggleDateRange(v);

            }
        });
        dialog.setCancelable(true);
        dialog.setContentView(R.layout.dialog_date_range);
        dialog.getWindow().getAttributes().windowAnimations = R.style.AppBaseTheme;
    }

    if (dialog.isShowing())
    {
        dialog.dismiss();
    }
    else
    {
        dialog.show();
    }
}