How to return to home screen from Activity

user718146 picture user718146 · May 5, 2011 · Viewed 11.4k times · Source

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?

Answer

Alec B. Plumb picture Alec B. Plumb · May 5, 2011
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    startActivity(intent);