robl2e wrote: > Hi, > I'm trying to implement similar behavior as the native phone app. > When a User is in the applications menu/drawer (place that lists all > applications) and receives and incoming call, after the call has ended > the User is returned to the Android Homescreen.
That is not what happens on a call. The user is taken to whatever activity they were in before the call. That could be the home screen, but that could be something else. > How do I redirect > activity to the android homescreen like the phone app for that > specific case. Call finish() in your activity to return control to whatever activity is prior to it on the stack. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

