码迷,mamicode.com
首页 > 移动开发 > 详细

Android自助餐之大图片加载

时间:2016-07-13 17:27:41      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

Android自助餐之大图片加载

原理

  1. 使用BitmapFactory.decodeStreeam()方法,该方法会调用native层代码来创建bitmap(两个重载都会调用)
  2. 使用带BitmapFactory.Options参数的方法,改参数可指定生成bitmap的大小

思路

  1. 根据View尺寸或Window尺寸来确定bitmap的尺寸
  2. 将确定好的尺寸放入BitmapFactory.Options
  3. 调用BitmapFactory.decodeStreeam()生成bitmap

步骤

  1. 根据图片路径或URI打开输入流

    InputStream is = getContentResolver().openInputStream(imageUri);
  2. 获取屏幕或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();
  3. 根据目标尺寸生成BitmapFactory.Options

    BitmapFactory.Options option = new BitmapFactory.Options();
    option.inSampleSize = dstSize;
  4. 使用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();
}

Android自助餐之大图片加载

标签:

原文地址:http://blog.csdn.net/xmh19936688/article/details/51883393

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!