Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android自助餐之大圖片加載

Android自助餐之大圖片加載

編輯:關於Android編程

原理

使用BitmapFactory.decodeStreeam()方法,該方法會調用native層代碼來創建bitmap(兩個重載都會調用) 使用帶BitmapFactory.Options參數的方法,改參數可指定生成bitmap的大小

思路

根據View尺寸或Window尺寸來確定bitmap的尺寸 將確定好的尺寸放入BitmapFactory.Options 調用BitmapFactory.decodeStreeam()生成bitmap

步驟

根據圖片路徑或URI打開輸入流

InputStream is = getContentResolver().openInputStream(imageUri);

獲取屏幕或View尺寸
如果能確定View尺寸則使用View尺寸,如果不能(比如動態調整的View、自適應的View等)則獲取最接近該View的尺寸,實在不行就獲取當前Activity的Window尺寸(比屏幕尺寸小)

獲取Window尺寸

WindowManager windowManager = getWindowManager();
Display defaultDisplay = windowManager.getDefaultDisplay();
defaultDisplay.getHeight();
defaultDisplay.getWidth();

獲取View尺寸

view.getMeasuredWidth();
view.getMeasuredHeight();

根據目標尺寸生成BitmapFactory.Options

BitmapFactory.Options option = new BitmapFactory.Options();
option.inSampleSize = dstSize;

使用options調用BitmapFactory.decodeStream()生成bitmap

Bitmap bitmap = BitmapFactory.decodeStream(is, null, option);

完整代碼

InputStream is = null;
try {

    int screenWidth=getWindowManager().getDefaultDisplay().getWidth();
    int screenHeight=getWindowManager().getDefaultDisplay().getHeight();
    int maxSize=Math.max(screenWidth,screenHeight);//以長邊為准

    is = getContentResolver().openInputStream(imageUri);
    BitmapFactory.Options option = new BitmapFactory.Options();
    option.inSampleSize = maxSize;
    Bitmap bitmap = BitmapFactory.decodeStream(is, null, option);
    imageView.setImageBitmap(bitmap);
} catch (Exception e) {
    e.printStackTrace();
} 
try{
    if(is!=null)is.close();
}
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved