【发布时间】:2011-11-06 06:18:44
【问题描述】:
AlertDialog.Builder builder;
AlertDialog alertDialog;
Context mContext = getApplicationContext();
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.dialoglayout,
(ViewGroup) findViewById(R.id.layout_root));
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.icon);
builder = new AlertDialog.Builder(mContext);
builder.setView(layout);
alertDialog = builder.create();
alertDialog.show();
谁能告诉我这段代码的问题。它给出了以下异常:
11-06 11:44:20.572: 错误/AndroidRuntime(339): 致命异常: main 11-06 11:44:20.572: 错误/AndroidRuntime(339): java.lang.RuntimeException: 无法启动活动 ComponentInfo{com.andoroid.dialog/com.andoroid.dialog.AlertDialogTestActivity}: android.view.WindowManager$BadTokenException : 无法添加窗口 -- 令牌 null 不适用于应用程序 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread.access$2300(ActivityThread.java:125) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.os.Handler.dispatchMessage(Handler.java:99) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.os.Looper.loop(Looper.java:123) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread.main(ActivityThread.java:4627) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 java.lang.reflect.Method.invokeNative(Native Method) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 java.lang.reflect.Method.invoke(Method.java:521) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626) 11-06 11:44:20.572:错误/AndroidRuntime(339):在 dalvik.system.NativeStart.main(本机方法) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 由: android.view.WindowManager$BadTokenException: 无法添加窗口 -- 令牌 null 不适用于应用程序 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.view.ViewRoot.setView(ViewRoot.java:509) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.Dialog.show(Dialog.java:241) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 com.andoroid.dialog.AlertDialogTestActivity.createDialog(AlertDialogTestActivity.java:48) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 com.andoroid.dialog.AlertDialogTestActivity.onCreate(AlertDialogTestActivity.java:22) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047) 11-06 11:44:20.572: 错误/AndroidRuntime(339): 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
【问题讨论】:
标签: android android-alertdialog