0

我试图通过传递上下文通过广播接收器调用方法(postMessage),但不工作。

错误是什么?我尝试了很多东西,但仍然没有工作。

 public class AlarmReceiver extends BroadcastReceiver implements
            OnActivityResultListener {


        public void onReceive(Context context, Intent intent) {
            try {
         controler(context); 

            } catch (Exception e) {
                Toast.makeText(
                        context,
                        "There was an error somewhere",
                        Toast.LENGTH_SHORT).show();
                e.printStackTrace();
            }

        }

    public void controler(Context context) {
  String radioButtonName = MAinActivity.actionAlarmName(radioButtonName);

            if (radioButtonName.equals("1")) {
        //      TODO
            } else if (radioButtonName.equals("2")) {
    postMessage(context);
    }
    }

    public void postMessage(Context context) {

            DialogInterface.OnClickListener dialogClickListener = new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    switch (which) {
                    case DialogInterface.BUTTON_POSITIVE:
                        // Yes button clicked

                        break;

                    case DialogInterface.BUTTON_NEGATIVE:
                        // No button clicked
                        break;
                    }
                }
            };
            AlertDialog.Builder builder = new AlertDialog.Builder(context);
            builder.setMessage("Are you sure?")
                    .setPositiveButton("Yes", dialogClickListener)
                    .setNegativeButton("No", dialogClickListener).show();
        }
4

4 回答 4

2

Context您收到的onReceive()不是BroadcastReceiverActivity 上下文,而是它的应用程序上下文。您不能显示带有应用程序上下文的对话框。对话框应始终与Activity.

于 2013-02-26T04:30:33.913 回答
1

在 AndroidManifest 中添加您的接收器

<receiver android:name=".AlarmReceiver" android:process=":remote" />
于 2013-02-26T03:44:33.623 回答
1

如果你想在没有活动上下文的接收器中显示一个对话框,你可以这样做:

dialog.getWindow.setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT)

不要忘记在 AndroidManifest.xml 中添加权限。

于 2013-02-26T04:46:43.520 回答
1

如Android官方文档中所述,您无法在接收方法中显示对话框。

http://developer.android.com/reference/android/content/BroadcastReceiver.html#onReceive(android.content.Context,android.content.Intent)

即使您想显示一个对话框,您也可以使用另一种方法来启动具有对话框样式的活动,或者您可以启动一个透明活动,该活动将在其 on create 方法中显示警报对话框。

希望这可以帮助:

于 2013-02-26T06:23:52.557 回答