Android 回来home

Android 返回home返回homeIntent intent new Intent()intent.setAction(Intent.ACTION_MAIN)intent.ad

Android 返回home

返回home

Intent intent = new Intent();  intent.setAction(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_HOME);   startActivity(intent);
?