On showing dialog i get “Can not perform this action after onSaveInstanceState”

前端 未结 17 1085
甜味超标
甜味超标 2020-11-29 18:37

Some users are reporting, if they use the quick action in the notification bar, they are getting a force close.

I show a quick action in the notification who calls t

17条回答
  •  野性不改
    2020-11-29 19:14

    private void showSnoozeDialog() {
        FragmentManager fm = getSupportFragmentManager();
        SnoozeDialog snoozeDialog = new SnoozeDialog();
        // snoozeDialog.show(fm, "snooze_dialog");
        FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
        ft.add(snoozeDialog, "snooze_dialog");
        ft.commitAllowingStateLoss();
    }
    

    ref: link

提交回复
热议问题