0

当我尝试打开对话框时,出现以下 android 异常。

09-20 09:27:46.119: W/System.err(558): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
09-20 09:27:46.139: W/System.err(558):  at android.view.ViewRoot.setView(ViewRoot.java:440)
09-20 09:27:46.139: W/System.err(558):  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:181)
09-20 09:27:46.139: W/System.err(558):  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:95)
09-20 09:27:46.139: W/System.err(558):  at android.app.Dialog.show(Dialog.java:269)
09-20 09:27:46.139: W/System.err(558):  at android.app.AlertDialog$Builder.show(AlertDialog.java:907)

我正在从 Service Android 调用对话框,并尝试了以下代码:

handler.post(new Runnable() {
    public void run() {                               
        try{
            new AlertDialog.Builder(getApplicationContext()).setTitle("Alert!").setMessage("SIMPLE MESSAGE!").setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) { 

                }
            }).show();
        } catch(Exception ex){
            ex.printStackTrace();
        }
    }
});
4

3 回答 3

1

您无法从服务中打开对话框。Dialog 是一个 UI 组件,它需要与一个 UI 元素(Activity)相关联。您可以做的是从您的服务中启动一个“看起来像”对话框的活动。您可以为 Activity 的 UI 提供一个“DialogTheme”,使其看起来像一个标准的 Andrdoid 对话框。只需在 StackOverflow 中搜索“活动对话框主题”即可。

于 2012-09-20T11:03:06.457 回答
0

我猜问题出在getApplicationContext()它可能返回null,传递正确的上下文......

于 2012-09-20T09:44:09.770 回答
0

第 1 步:创建类 MyReciever:

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class MyReceiver extends BroadcastReceiver {
    public MyReceiver() {
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        if(intent.getAction().equalsIgnoreCase(Intent.ACTION_BOOT_COMPLETED)){
            Intent serviceIntent = new Intent(context, MyService.class);
            context.startService(serviceIntent);
        }

        Intent serviceIntent = new Intent(context, MyService.class);
        context.startService(serviceIntent);
    }
}

第 2 步:创建类 MyService

import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.preference.PreferenceManager;

public class MyService extends Service {

    public MyService() {
    }

    @Override
    public void onCreate() {

    //your SERVICE code here... 

        super.onCreate();
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }
}

第 3 步:在 MainActivity 类中启动服务:

startService(new Intent(this, MyService.class));
于 2015-08-06T03:20:58.033 回答