Android 簡單圖片瀏覽器 讀取sdcard圖片+形成縮圖+Gallery

來源:互聯網
上載者:User

標籤:

1.讀取SD卡上面的圖片資訊

    //想要的傳回值所在的列            String[] projection = { MediaStore.Images.Thumbnails._ID};            //圖片資訊儲存在 android.provider.MediaStore.Images.Thumbnails資料庫             //快速查詢資料庫中的圖片對應存放路勁                     Cursor cursor = managedQuery(                    MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,                    projection, //List of columns to return :想要他返回的列                    null, // Return all rows                    null,                    null);            int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Thumbnails._ID);            uriArray = new Uri[cursor.getCount()];//把圖片路徑放在數組中

2.將讀取的圖片產生縮圖

    while(cursor.moveToNext()&&i<cursor.getCount())            {   //移到指定的位置,遍曆資料庫                cursor.moveToPosition(i);                uri = Uri.withAppendedPath(MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,cursor.getInt(columnIndex)+"");                uriArray[i]=uri;                try {                    bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));                    if (bitmap != null) {                        //將原來的位元影像轉換成新的位元影像                        newBitmap = Bitmap.createScaledBitmap(bitmap,80, 80,true);                        bitmap.recycle();//釋放記憶體                        if (newBitmap != null) {                            publishProgress(new LoadedImage(newBitmap));                        }                    }                } catch (IOException e) {}                i++;            }

 

Android 簡單圖片瀏覽器 讀取sdcard圖片+形成縮圖+Gallery

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.