[android-developers] Re: How to start an Intent from preference page AND GET RESULTS?

2009-04-28 Thread gymshoe
see: http://www.anddev.org/starting_intent_from_preferences_screen-t4505.html This invokes an Intent directly from Preferences XML which is handy. (Perhaps you could specify ACTION_GET_CONTENT to return a value to your app, although I have not tried this.) Invoking the intent works OK

[android-developers] Re: How to start an Intent from preference page AND GET RESULTS?

2009-04-28 Thread Jason Parekh
The easiest solution for your situation is to refresh the summaries in your preference activity's onResume. Otherwise you'll have to override onPreferenceTreeClick and start the activity manually. (sent from phone) On Mar 6, 2009 7:37 PM, Xin Zhao uszhao...@gmail.com wrote: Hey guys, I am