I am working on a tablet that will not feature all the navigation buttons, just powerup, so I need a way to go from an activity to show the home screen. What Intent action can i fire that is guaranteed to show clear homescreen? What intent\action fires when you click on the device button that takes you to homescreen. Thanks?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
just call the following code from any activity:
You may want to add a button of some sort to invoke this function. Good luck |
|||
|
|
You could try and finish() all of your activities. Maybe in Application keep a ivar that is showHome, if true on resume() in each activity just call finish(). This is not really standard android behavior though. Edit** If you want to fire their launcher you can checkout this thread: Going to home screen Programmatically |
||||
|
|
Untested Code:
|
||||
|
|