天天看點

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);
    }