Disable back button in android

后端 未结 17 1354
名媛妹妹
名媛妹妹 2020-11-22 05:10

How to disable back button in android while logging out the application?

17条回答
  •  广开言路
    2020-11-22 05:58

    if you are using FragmentActivity. then do like this

    first call This inside your Fragment.

    public void callParentMethod(){
        getActivity().onBackPressed();
    }
    

    and then Call onBackPressed method in side your parent FragmentActivity class.

    @Override
    public void onBackPressed() {
      //super.onBackPressed();
      //create a dialog to ask yes no question whether or not the user wants to exit
      ...
    }
    

提交回复
热议问题