android大图片显示

 一般用摄像头拍摄的图片都会大于1M,

在anroid中载入这种大图片的时候很容易内存不足,
这时候我们可以对大图进行缩放,普通的图片则正常显示
 
  
  
  
  
  1. File file = new File(path); 
  2. byte[] all=...;//path文件的byte 
  3. if(file.length()>1024*1024){ 
  4.     BitmapFactory.Options options=new BitmapFactory.Options(); 
  5.         options.inSampleSize=10;//图片缩放比例 
  6.         bmp = BitmapFactory.decodeByteArray(all, 0, all.length,options); 
  7. }else
  8.     bmp = BitmapFactory.decodeByteArray(all, 0, all.length); 
  9. mImageView.setImageBitmap(bmp); 

 

你可能感兴趣的:(android,移动开发,image,职场,休闲)