A small example of how Android gets thumbnails of images and videos on the SD card

Source: Internet
Author: User

How to determine files? You can use Cursor to traverse the database and compare the value of the INTERNAL_CONTENT_URI field. This is a Uri, which stores the complete path of the multimedia file on the Android mobile phone SD card.

[Java]

Copy codeThe Code is as follows: Uri originalUri = MediaStore. Images. Media. EXTERNAL_CONTENT_URI;
// If it is a Video, it is MediaStore. Video. Media. EXTERNAL_CONTENT_URI;
ContentResolver cr = this. getContentResolver ();
Cursor cursor = cr. query (originalUri, null );
If (cursor = null ){
Return;
}
For (cursor. moveToFirst ();! Cursor. isAfterLast (); cursor. moveToNext ()){
Long thumbNailsId = cursor. getLong (cursor. getColumnIndex ("_ ID "));
Bitmap bitmap = MediaStore. Images. Thumbnails. getThumbnail (cr,
ThumbNailsId, Video. Thumbnails. MICRO_KIND, null );
// If it is a video, it is
// Bitmap bitmap = MediaStore. Video. Thumbnails. getThumbnail (cr,
// ThumbNailsId, Video. Thumbnails. MICRO_KIND, null );
Return bitmap;
}

Uri originalUri = MediaStore. Images. Media. EXTERNAL_CONTENT_URI;
// If it is a Video, it is MediaStore. Video. Media. EXTERNAL_CONTENT_URI;
ContentResolver cr = this. getContentResolver ();
Cursor cursor = cr. query (originalUri, null );
If (cursor = null ){
Return;
}
For (cursor. moveToFirst ();! Cursor. isAfterLast (); cursor. moveToNext ()){
Long thumbNailsId = cursor. getLong (cursor. getColumnIndex ("_ ID "));
Bitmap bitmap = MediaStore. Images. Thumbnails. getThumbnail (cr,
ThumbNailsId, Video. Thumbnails. MICRO_KIND, null );
// If it is a video, it is
// Bitmap bitmap = MediaStore. Video. Thumbnails. getThumbnail (cr,
// ThumbNailsId, Video. Thumbnails. MICRO_KIND, null );
Return bitmap;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.