BottomSheetDialogFragment - listen to dismissed by user event

后端 未结 6 1935
野性不改
野性不改 2021-01-01 08:56

How can I listen to a FINAL dismissal of a BottomSheetDialogFragment? I want to save user changes on the final dismissal only...

I tried following:

6条回答
  •  [愿得一人]
    2021-01-01 09:48

    Although all similar questions on SO suggest using onDismiss I think following is the correct solution:

    @Override
    public void onCancel(DialogInterface dialog)
    {
        super.onCancel(dialog);
        Toast.makeText(MainApp.get(), "CANCEL", Toast.LENGTH_SHORT).show();
    }
    

    This fires if:

    * the user presses back
    * the user presses outside of the dialog
    

    This fires NOT:

    * on screen rotation and activity recreation
    

    Solution

    Combine onCancel and BottomSheetBehavior.BottomSheetCallback.onStateChanged like following:

    public class Dailog extends BottomSheetDialogFragment
    {
        @Override
        public void onCancel(DialogInterface dialog)
        {
            super.onCancel(dialog);
            handleUserExit();
        }
    
        @Override
        public Dialog onCreateDialog(Bundle savedInstanceState)
        {
            Dialog d = super.onCreateDialog(savedInstanceState);
            d.setOnShowListener(new DialogInterface.OnShowListener() {
                @Override
                public void onShow(DialogInterface dialog) {
                    BottomSheetDialog d = (BottomSheetDialog) dialog;
                    FrameLayout bottomSheet = (FrameLayout) d.findViewById(android.support.design.R.id.design_bottom_sheet);
                    BottomSheetBehavior behaviour = BottomSheetBehavior.from(bottomSheet);
                    behaviour.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
                        @Override
                        public void onStateChanged(@NonNull View bottomSheet, int newState) {
                            if (newState == BottomSheetBehavior.STATE_HIDDEN)
                            {
                                handleUserExit();
                                dismiss();
                            }
                        }
    
                        @Override
                        public void onSlide(@NonNull View bottomSheet, float slideOffset) {
    
                        }
                    });
                }
            });
            return d;
        }
    
        private void handleUserExit()
        {
            Toast.makeText(MainApp.get(), "TODO - SAVE data or similar", Toast.LENGTH_SHORT).show();
        }
    }
    

提交回复
热议问题