如何在项目列表视图按钮点击时显示alertdialog(How to show alertdialo

2019-10-17 03:52发布

我曾尝试以下代码..

            btnRemoveItem.setOnClickListener(new View.OnClickListener() {

                @Override
                public void onClick(View arg0) {
                    // TODO Auto-generated method stub
                    Bundle b = new Bundle();
                    b.putLong("index", item.id);


                    AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
                    builder.setTitle("Are you sure you ?");
                    builder.setMessage("Are you suer you want to remove this item from the cart?");
                    builder.setPositiveButton("No", new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            dialog.cancel();
                        }

                    });
                    builder.setNegativeButton("Yes", new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {

                        }
                    });
                    Dialog dd= builder.create();
                    dd.show();

                }
            });

但我得到了下面的错误..

08-11 19:18:50.968: E/AndroidRuntime(827): FATAL EXCEPTION: main
08-11 19:18:50.968: E/AndroidRuntime(827): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.view.ViewRoot.setView(ViewRoot.java:531)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.app.Dialog.show(Dialog.java:241)
08-11 19:18:50.968: E/AndroidRuntime(827):  at com.gand.metro.uis.SearchActivity$ItemsAdapter$1.onClick(SearchActivity.java:406)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.view.View.performClick(View.java:2485)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.view.View$PerformClick.run(View.java:9080)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.os.Handler.handleCallback(Handler.java:587)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.os.Handler.dispatchMessage(Handler.java:92)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.os.Looper.loop(Looper.java:123)
08-11 19:18:50.968: E/AndroidRuntime(827):  at android.app.ActivityThread.main(ActivityThread.java:3683)
08-11 19:18:50.968: E/AndroidRuntime(827):  at java.lang.reflect.Method.invokeNative(Native Method)
08-11 19:18:50.968: E/AndroidRuntime(827):  at java.lang.reflect.Method.invoke(Method.java:507)
08-11 19:18:50.968: E/AndroidRuntime(827):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
08-11 19:18:50.968: E/AndroidRuntime(827):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
08-11 19:18:50.968: E/AndroidRuntime(827):  at dalvik.system.NativeStart.main(Native Method)

Answer 1:

AlertDialogs只能使用活动上下文中创建的,所以getApplicationContext()将无法工作。 相反,下面的全局变量添加到您的活动文件:

Context mContext;

然后将以下添加到您的onCreate():

mContext = this;

现在,变化:

AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());

AlertDialog.Builder builder = new AlertDialog.Builder(mContext);


Answer 2:

您正在使用getApplicationContext()的时候,你应该使用的活动环境中使用SearchActivity.this代替



文章来源: How to show alertdialog when clicking on button in item in list view