I'm I'm doing the standard thing to allow a user to pick an image:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/*");
However, I get an "Open From" view back that includes some shortcut links,
including Recent, Images, Downloads and then sits the applications I want,
namely "Photos" underneath.
The problem is that if the user wants to to pick from Downloads, the
returned RUL is bogus and doesn't work, but if the user selected Photos
first, and then picks downloads from there, it works just fine.
How do I get rid of this shortcut screen?
I wouldn't mind it, except that I can' pick any images from it.
--
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
---
You received this message because you are subscribed to the Google Groups
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.