简体   繁体   中英

Resuming Home Screen

I navigate to the subsequent activities in my project and from one activity i want to come at the home screen...Please suggest the exact code for it.

Thanks

The trick is to launch an Intent with action set to ACTION_MAIN and a category of CATEGORY_HOME.

Something along the lines of:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM