Hi Zeeshan,

In Android, we have a Gallery as native app, you can try to send the
Intent.ACTION_GET_CONTENT to get the picture,

This is the sample code:

Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.setDataType("image/*");
startActivityForResult(i)

and in onActivityResult, we will get an intent with the uri in the data
of the intent.

BR,
Nam

On Tue, 2010-09-28 at 17:51 +0200, zeeshan mirza wrote:
> Hi Friends,
> I am developing an android application in which i have to browse
> picture gallery or picture folder by clicking on a browse button and
> then have to select a picture. I dont know how to do that. I have done
> that in .Net but have no idea how to do in android. Is there anyone
> who can help me? Thanks in advance :)
> 
> BR,
> Zeeshan
> 

-- 
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