accessing phone images through content provider in android
Posted
by Tee
on Stack Overflow
See other posts from Stack Overflow
or by Tee
Published on 2010-05-22T20:00:00Z
Indexed on
2010/05/22
20:10 UTC
Read the original article
Hit count: 176
Hi,
I need a sample code or tutorial for accessing phone images/media through content provider ?
I know the following, what next ?
ContentResolver cr = mContext.getContentResolver(); Cursor cursor = cr.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null, null, null, null);
© Stack Overflow or respective owner