I need to minimize the android application on back button click

后端 未结 3 701
花落未央
花落未央 2021-02-05 05:10

I need to minimize the application when back button is pressed.

I use following code to catch hardware back button click event


help me with the code of min

3条回答
  •  耶瑟儿~
    2021-02-05 06:03

    This is a simple code to minimize the application

    @Override
    public void onBackPressed() {
            this.moveTaskToBack(true);
    }
    

提交回复
热议问题