开发者

Resuming Home Screen

开发者 https://www.devze.com 2023-01-31 19:44 出处:网络
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.

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


Check this old answer: Android moving back to first activity on button click

0

精彩评论

暂无评论...
验证码 换一张
取 消