How to return to home screen from Activity
Asked Answered
A

1

8

I know Android will return to the home screen when I press the Home key, however, I want my imageButton to behave as the Home key, which can inform the home screen to the foreground.

How should I implement my onClickListener to accomplish this?

Adrenalin answered 5/5, 2011 at 15:25 Comment(0)
P
23
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    startActivity(intent);
Pohl answered 5/5, 2011 at 16:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.