我試圖創建RecyclerView.Adapter
AlertDialog
與此代碼警告對話框無法添加窗口錯誤
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(new ContextThemeWrapper(context, R.style.AppTheme));
alertDialogBuilder.setView(R.layout.reserve_dialog);
alertDialogBuilder.create();
alertDialogBuilder.show();
但我在logcat中收到此錯誤:
Theme: themes:{}
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
有什麼不對?
使用你的上下文像這樣context = itemView.getContext(); –
onbindviewholder中沒有itemView @JhamanDas –