I was trying to pick a phone number from the contact list by using startActivityForResults() from an activity "ChangeCallForward". Unfortunately, the activity using the Contacts application was terminated too early.
The discussion titled "onActivityResult not being called in Activity that uses GLSurfaceView" has been very helpful (I've changed my activity's launch mode to "singleTask" instead of singleInstance) but, even so, the onActivityResult() was not getting called and ChangeCallForward was terminated too early. It turns out that I also had to remove the Intent.FLAG_ACTIVITY_NO_HISTORY from the intent launching ChangeCallForward. -- 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

