I've an oddd problem... I've an activity with a button. On click event
I call a pick image, like this:

        Uri target =
android.provider.MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI;
        Intent intent = new Intent(Intent.ACTION_PICK, target);
        startActivityForResult(intent, RESULT_PICKUP_IMAGE);

on onActivityResult I call an other activity. When come back from that
last activity, my main activity is refreshed only for half.

Doing a few tests the problem is solved if I call the second activity
out of onActivityResult, from a button from main activity, but I need
to call the activity from into onActivityResult .

any idea ?





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to