Android 将系统的back键模拟成为home键的功能

Android 将系统的back键模拟成为home键的功能

@Override
public void onBackPressed() {
    Intent intent = new Intent(Intent.ACTION_MAIN); 
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    intent.addCategory(Intent.CATEGORY_HOME); 
    startActivity(intent);
}

参考网址:https://www.cnblogs.com/tony-yang-flutter/p/androidbacktohome.html

你可能感兴趣的:(Android,Studio)