如何使用后退按钮最小化应用程序?

时间:2017-09-04 09:10:46

标签: android

我需要在用backButton输入用户信息后最小化应用。 我做错了什么?

这是backButton代码:

 backButton.setOnClickListener(new OnClickListener() {

   @Override
   public void onClick(View arg0) {

     if (sendThread != null) {
       //sendThread.cancel();
     }

     if (receiveThread != null) {
       //receiveThread.cancel();
     }

     //acceptThread = new AcceptConnection();
     //acceptThread.start();
     textsListAdapter.clear();
     viewFlipper.showPrevious();
     deviceArrayAdapter.clear();
   }
 });

2 个答案:

答案 0 :(得分:0)

试试这个

Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);

答案 1 :(得分:0)

找到它将从应用中退出的解决方案

def nameList = ["Jon", "Mike", "Alexia"]