[android-developers] Re: Using back button in android.

2010-07-17 Thread Indicator Veritatis
Override it? 99 out of 100 times, that is a very bad idea. The users really do semi-intuitively expect Back to call finish() (not that they know this API) to make the current activity go away, taking them to the next one on the Activity Stack. So why do you want to do this? On Jul 15, 6:24 am,

[android-developers] Re: Using back button in android.

2010-07-17 Thread nation-x
See http://android-developers.blogspot.com/2009/12/back-and-other-hard-keys-three-stories.html Shawn McAllister On Jul 15, 9:24 am, Ajmer Singh ajmersing...@gmail.com wrote: I am a new to android development I want to override the default back button operation in android,please let me know