开发者

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


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

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜