Override dialog onBackPressed()?

后端 未结 5 786
醉梦人生
醉梦人生 2020-12-16 09:51

How would I override a Dialog\'s onBackPressed to close the dialog as well as calling finish() on the Activity it is loca

5条回答
  •  囚心锁ツ
    2020-12-16 10:48

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState){
      return new Dialog(getActivity(), getTheme()){
        @Override
        public void onBackPressed(){
          // dismiss();
          // activityReference.finish();
        }
      };
    }
    

提交回复
热议问题