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?

tomerpacific
  • 4,704
  • 13
  • 34
  • 52
user718146
  • 400
  • 1
  • 4
  • 16

1 Answers1

23
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    startActivity(intent);
Alec B. Plumb
  • 2,490
  • 25
  • 25