3

我是 Java 和 Android 的新手,我正在开发我的第一个测试应用程序。

我已经取得了进展,但我被对话框阻止了。

我显示来自 Activity 的对话框,如下所示:

//BuyActivity.java
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_shop);

    initialize_PR();
    display_PR();
    BuyDialog=new Dialog(this);
    BuyDialog.setContentView(R.layout.dialog_buy);

}
public void Action_ShowDialog_Buy(View view) {
    BuyDialog.show() ;
}

当单击触发 Action_ShowDialog_Buy 的 Activity 按钮时,对话框正确显示。但在那之后,Dialog 本身就有了一个按钮:

<!-- dialog_buy.xml -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<!-- Other stuff -->

<Button
    android:id="@+id/Button_Buy"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/Some_Other_Stuff"
    android:layout_centerHorizontal="true"
    android:text="@string/button_buy"
    android:onClick="Action_ShowDialog_Buy" />

</RelativeLayout>

在Activity上实现了按钮方法Action_ShowDialog_Buy:

public void Action_ShowDialog_Buy(View view) {
    BuyDialog.dismiss() ;
}

但是当我单击对话框中的按钮时,我收到错误:

java.lang.IllegalStateException: Could not find a method BuyActivity.Action_ShowDialog_Buy(View) in the activity class android.view.ContextThemeWrapper for onClick handler on view class android.widget.Button with id 'Button_Buy'

及以下:

Caused by: java.lang.NoSuchMethodException:BuyActivity.Action_ShowDialog_Buy

但正如您在上面看到的,该方法存在于 Activity 上。

我想我理解这是某种范围问题,但我无法理解它。请注意,我已阅读在布局 xml 中使用 onClick 属性会导致 Android 对话框中出现 NoSuchMethodException,但我需要了解,而不仅仅是复制代码。

非常感谢

4

5 回答 5

2

您正在尝试调用方法“Action_ShowDialog_Buy”,但 Dialog 对象中不存在此方法!如果在 xml 中指定,则此方法不应在 Activity 中。如果要处理 Activity 中的单击,则应以编程方式设置 onClickListener:

Button b=(Button)BuyDialog.findViewById(R.id.Button_Buy);
b.setOnClickListener(new OnClickListener(){
    @Override
    onClick(View v){
      BuyDialog.dismiss();
    }

});
于 2012-09-25T12:15:21.603 回答
1

您必须在 xml 文件中使用 set clickable true 。

<!-- dialog_buy.xml -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <!-- Other stuff -->

        <Button
            android:id="@+id/Button_Buy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/Some_Other_Stuff"
            android:layout_centerHorizontal="true"
            android:text="@string/button_buy"
            android:onClick="Action_ShowDialog_Buy"
            android:clickable="true" />

        </RelativeLayout>
于 2013-03-07T08:51:57.607 回答
1

及以下:

Caused by: java.lang.NoSuchMethodException:BuyActivity.ActionShowDialog_Buy

锁定在此ActionShowDialog_Buy您忘记_了方法名称中的simbol

于 2012-09-25T12:18:49.603 回答
0

对话框使用 ContextThemeWrapper

现在,我们得到的例外...

java.lang.IllegalStateException: Could not find a method android:onClick="method" 
in the activity class android.view.ContextThemeWrapper
for onClick handler on view class android.widget.RadioButton with id 'statusSuspend'

要摆脱这种情况,只需使用适当的充气机

LayoutInflater.from(context)代替

  1. ((LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE))

  2. getLayoutInflater()

避免使用 void setContentView(int layoutResID) 而是使用 void setContentView(View view)

并在 Dialog 构造函数中使用相同的上下文,即 super(context)

最后请不要忘记在 Activity 中定义 android:onClick="method" 而不是在您的自定义类中

于 2014-10-08T18:05:13.403 回答
0

感谢所有试图提供帮助的人。

我已经设法通过创建一个从 Dialog 派生的类并使用它来解决这个问题,使用以下代码:

import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.widget.RelativeLayout;

public class BuyDialogClass extends Dialog
{

//Ensure this Dialog has a Context we can use
Context mContext ;

public BuyDialogClass(Context context) {
    super(context);
    mContext=context; //Store the Context as provided from caller
}

@Override
 protected void onCreate(final Bundle savedInstanceState)
 {
  super.onCreate(savedInstanceState);
  RelativeLayout ll=(RelativeLayout) LayoutInflater.from(mContext).inflate(R.layout.dialog_buy, null);
  setContentView(ll); 
 }

}

这使我可以这样调用对话框:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_shop);

    initialize_PR();
    display_PR();
    BuyDialog=new BuyDialogClass(this);
    //The setContentView is not necessary here as we call it on the onCreate

    //We can NOT access Dialog widgets from here,
    //because the dialog has not yet been shown.

}
public void Action_ShowDialog_Buy(View view) {
    BuyDialog.show() ;

    //NOW, after showing the dialog, we can access its widgets
    jobject_SeekBar_buy= (SeekBar) BuyDialog.findViewById(R.id.SeekBar_Dialog_Buy) ;
    jobject_SeekBar_buy.setMax(PR_num_coins/currentPR_buy_price) ;
    jobject_SeekBar_buy.setOnSeekBarChangeListener(this);

}
public void Action_Buy_PR(View view) {
    BuyDialog.dismiss() ;
}

我通过阅读在布局 xml 中使用 onClick 属性会在 Android 对话框中导致 NoSuchMethodException来设法做到这一点,但我仍然不明白这个上下文问题。

于 2012-09-25T21:20:08.437 回答