我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android图片缓存之Bitmap详解(一)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android图片缓存之Bitmap详解(一)

前言:
最近准备研究一下图片缓存框架,基于这个想法觉得还是先了解有关图片缓存的基础知识,今天重点学习一下Bitmap、BitmapFactory这两个类。 

Bitmap:
Bitmap是Android系统中的图像处理的最重要类之一。用它可以获取图像文件信息,进行图像剪切、旋转、缩放等操作,并可以指定格式保存图像文件。
 重要函数
 •public void recycle() // 回收位图占用的内存空间,把位图标记为Dead
 •public final boolean isRecycled() //判断位图内存是否已释放  
 •public final int getWidth()//获取位图的宽度 
 •public final int getHeight()//获取位图的高度
 •public final boolean isMutable()//图片是否可修改 
 •public int getScaledWidth(Canvas canvas)//获取指定密度转换后的图像的宽度 
 •public int getScaledHeight(Canvas canvas)//获取指定密度转换后的图像的高度 
 •public boolean compress(CompressFormat format, int quality, OutputStream stream)//按指定的图片格式以及画质,将图片转换为输出流。 
 format:Bitmap.CompressFormat.PNG或Bitmap.CompressFormat.JPEG 
 quality:画质,0-100.0表示最低画质压缩,100以最高画质压缩。对于PNG等无损格式的图片,会忽略此项设置。
 •public static Bitmap createBitmap(Bitmap class="lazy" data-src) //以class="lazy" data-src为原图生成不可变得新图像 
 •public static Bitmap createScaledBitmap(Bitmap class="lazy" data-src, int dstWidth, int dstHeight, boolean filter)//以class="lazy" data-src为原图,创建新的图像,指定新图像的高宽以及是否可变。 
 •public static Bitmap createBitmap(int width, int height, Config config)——创建指定格式、大小的位图 
 •public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height)以source为原图,创建新的图片,指定起始坐标以及新图像的高宽。 

BitmapFactory工厂类:
Option 参数类:
 •public boolean inJustDecodeBounds//如果设置为true,不获取图片,不分配内存,但会返回图片的高度宽度信息。
 •public int inSampleSize//图片缩放的倍数
 •public int outWidth//获取图片的宽度值
 •public int outHeight//获取图片的高度值 
 •public int inDensity//用于位图的像素压缩比 
 •public int inTargetDensity//用于目标位图的像素压缩比(要生成的位图) 
 •public byte[] inTempStorage //创建临时文件,将图片存储
 •public boolean inScaled//设置为true时进行图片压缩,从inDensity到inTargetDensity
 •public boolean inDither //如果为true,解码器尝试抖动解码
 •public Bitmap.Config inPreferredConfig //设置解码器
 •public String outMimeType //设置解码图像
 •public boolean inPurgeable//当存储Pixel的内存空间在系统内存不足时是否可以被回收
 •public boolean inInputShareable //inPurgeable为true情况下才生效,是否可以共享一个InputStream
 •public boolean inPreferQualityOverSpeed  //为true则优先保证Bitmap质量其次是解码速度
 •public boolean inMutable //配置Bitmap是否可以更改,比如:在Bitmap上隔几个像素加一条线段
 •public int inScreenDensity //当前屏幕的像素密度 

 工厂方法:
 •public static Bitmap decodeFile(String pathName, Options opts) //从文件读取图片 
 •public static Bitmap decodeFile(String pathName)
 •public static Bitmap decodeStream(InputStream is) //从输入流读取图片
 •public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts)
 •public static Bitmap decodeResource(Resources res, int id) //从资源文件读取图片
 •public static Bitmap decodeResource(Resources res, int id, Options opts) 
 •public static Bitmap decodeByteArray(byte[] data, int offset, int length) //从数组读取图片
 •public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts)
 •public static Bitmap decodeFileDescriptor(FileDescriptor fd)//从文件读取文件 与decodeFile不同的是这个直接调用JNI函数进行读取 效率比较高
 •public static Bitmap decodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts) 

Bitmap.Config inPreferredConfig : 
枚举变量 (位图位数越高代表其可以存储的颜色信息越多,图像越逼真,占用内存越大)
 •public static final Bitmap.Config ALPHA_8 //代表8位Alpha位图        每个像素占用1byte内存
 •public static final Bitmap.Config ARGB_4444 //代表16位ARGB位图  每个像素占用2byte内存
 •public static final Bitmap.Config ARGB_8888 //代表32位ARGB位图  每个像素占用4byte内存
 •public static final Bitmap.Config RGB_565 //代表8位RGB位图          每个像素占用2byte内存

Android中一张图片(BitMap)占用的内存主要和以下几个因数有关:图片长度,图片宽度,单位像素占用的字节数。

一张图片(BitMap)占用的内存=图片长度*图片宽度*单位像素占用的字节数 

图片读取实例:
 1.)从文件读取方式一 


 
 public static Bitmap readBitmapFromFile(String filePath, int width, int height) {
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inJustDecodeBounds = true;
  BitmapFactory.decodeFile(filePath, options);
  float class="lazy" data-srcWidth = options.outWidth;
  float class="lazy" data-srcHeight = options.outHeight;
  int inSampleSize = 1;
  if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
   if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
    inSampleSize = Math.round(class="lazy" data-srcHeight / height);
   } else {
    inSampleSize = Math.round(class="lazy" data-srcWidth / width);
   }
  }
  options.inJustDecodeBounds = false;
  options.inSampleSize = inSampleSize;
  return BitmapFactory.decodeFile(filePath, options);
 }

 2.)从文件读取方式二 效率高于方式一 



 public static Bitmap readBitmapFromFileDescriptor(String filePath, int width, int height) {
  try {
   FileInputStream fis = new FileInputStream(filePath);
   BitmapFactory.Options options = new BitmapFactory.Options();
   options.inJustDecodeBounds = true;
   BitmapFactory.decodeFileDescriptor(fis.getFD(), null, options);
   float class="lazy" data-srcWidth = options.outWidth;
   float class="lazy" data-srcHeight = options.outHeight;
   int inSampleSize = 1;
   if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
    if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
     inSampleSize = Math.round(class="lazy" data-srcHeight / height);
    } else {
     inSampleSize = Math.round(class="lazy" data-srcWidth / width);
    }
   }
   options.inJustDecodeBounds = false;
   options.inSampleSize = inSampleSize;
   return BitmapFactory.decodeFileDescriptor(fis.getFD(), null, options);
  } catch (Exception ex) {
  }
  return null;
 }

测试同样生成10张图片两种方式耗时比较 cpu使用以及内存占用两者相差无几 第二种方式效率高一点 所以建议优先采用第二种方式 


  start = System.currentTimeMillis();
  for (int i = 0; i < testMaxCount; i++) {
   BitmapUtils.readBitmapFromFile(filePath, 400, 400);
  }
  end = System.currentTimeMillis();
  Log.e(TAG, "BitmapFactory decodeFile--time-->" + (end - start));
  start = System.currentTimeMillis();
  for (int i = 0; i < testMaxCount; i++) {
   BitmapUtils.readBitmapFromFileDescriptor(filePath, 400, 400);
  }
  end = System.currentTimeMillis();
  Log.e(TAG, "BitmapFactory decodeFileDescriptor--time-->" + (end - start));

3.)从输入流中读取文件 


 
 public static Bitmap readBitmapFromInputStream(InputStream ins, int width, int height) {
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inJustDecodeBounds = true;
  BitmapFactory.decodeStream(ins, null, options);
  float class="lazy" data-srcWidth = options.outWidth;
  float class="lazy" data-srcHeight = options.outHeight;
  int inSampleSize = 1;
  if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
   if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
    inSampleSize = Math.round(class="lazy" data-srcHeight / height);
   } else {
    inSampleSize = Math.round(class="lazy" data-srcWidth / width);
   }
  }
  options.inJustDecodeBounds = false;
  options.inSampleSize = inSampleSize;
  return BitmapFactory.decodeStream(ins, null, options);
 }

4.)从资源文件中读取文件  


 public static Bitmap readBitmapFromResource(Resources resources, int resourcesId, int width, int height) {
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inJustDecodeBounds = true;
  BitmapFactory.decodeResource(resources, resourcesId, options);
  float class="lazy" data-srcWidth = options.outWidth;
  float class="lazy" data-srcHeight = options.outHeight;
  int inSampleSize = 1;
  if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
   if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
    inSampleSize = Math.round(class="lazy" data-srcHeight / height);
   } else {
    inSampleSize = Math.round(class="lazy" data-srcWidth / width);
   }
  }
  options.inJustDecodeBounds = false;
  options.inSampleSize = inSampleSize;
  return BitmapFactory.decodeResource(resources, resourcesId, options);
 }

 此种方式相当的耗费内存 建议采用decodeStream代替decodeResource 可以如下形式 


 public static Bitmap readBitmapFromResource(Resources resources, int resourcesId, int width, int height) {
  InputStream ins = resources.openRawResource(resourcesId);
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inJustDecodeBounds = true;
  BitmapFactory.decodeStream(ins, null, options);
  float class="lazy" data-srcWidth = options.outWidth;
  float class="lazy" data-srcHeight = options.outHeight;
  int inSampleSize = 1;
  if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
   if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
    inSampleSize = Math.round(class="lazy" data-srcHeight / height);
   } else {
    inSampleSize = Math.round(class="lazy" data-srcWidth / width);
   }
  }
  options.inJustDecodeBounds = false;
  options.inSampleSize = inSampleSize;
  return BitmapFactory.decodeStream(ins, null, options);
 }

decodeStream、decodeResource占用内存对比: 


 start = System.currentTimeMillis();
  for (int i = 0; i < testMaxCount; i++) {
   BitmapUtils.readBitmapFromResource(getResources(), R.mipmap.ic_app_center_banner, 400, 400);
   Log.e(TAG, "BitmapFactory decodeResource--num-->" + i);
  }
  end = System.currentTimeMillis();
  Log.e(TAG, "BitmapFactory decodeResource--time-->" + (end - start));
  start = System.currentTimeMillis();
  for (int i = 0; i < testMaxCount; i++) {
   BitmapUtils.readBitmapFromResource1(getResources(), R.mipmap.ic_app_center_banner, 400, 400);
   Log.e(TAG, "BitmapFactory decodeStream--num-->" + i);
  }
  end = System.currentTimeMillis();
  Log.e(TAG, "BitmapFactory decodeStream--time-->" + (end - start));

BitmapFactory.decodeResource 加载的图片可能会经过缩放,该缩放目前是放在 java 层做的,效率比较低,而且需要消耗 java 层的内存。因此,如果大量使用该接口加载图片,容易导致OOM错误。
BitmapFactory.decodeStream 不会对所加载的图片进行缩放,相比之下占用内存少,效率更高。
 这两个接口各有用处,如果对性能要求较高,则应该使用 decodeStream;如果对性能要求不高,且需要 Android 自带的图片自适应缩放功能,则可以使用 decodeResource。 

5. )从二进制数据读取图片 


public static Bitmap readBitmapFromByteArray(byte[] data, int width, int height) {
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inJustDecodeBounds = true;
  BitmapFactory.decodeByteArray(data, 0, data.length, options);
  float class="lazy" data-srcWidth = options.outWidth;
  float class="lazy" data-srcHeight = options.outHeight;
  int inSampleSize = 1;
  if (class="lazy" data-srcHeight > height || class="lazy" data-srcWidth > width) {
   if (class="lazy" data-srcWidth > class="lazy" data-srcHeight) {
    inSampleSize = Math.round(class="lazy" data-srcHeight / height);
   } else {
    inSampleSize = Math.round(class="lazy" data-srcWidth / width);
   }
  }
  options.inJustDecodeBounds = false;
  options.inSampleSize = inSampleSize;
  return BitmapFactory.decodeByteArray(data, 0, data.length, options);
 }

6.)从assets文件读取图片 


 
 public static Bitmap readBitmapFromAssetsFile(Context context, String filePath) {
  Bitmap image = null;
  AssetManager am = context.getResources().getAssets();
  try {
   InputStream is = am.open(filePath);
   image = BitmapFactory.decodeStream(is);
   is.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
  return image;
 }

图片保存文件: 


 public static void writeBitmapToFile(String filePath, Bitmap b, int quality) {
  try {
   File desFile = new File(filePath);
   FileOutputStream fos = new FileOutputStream(desFile);
   BufferedOutputStream bos = new BufferedOutputStream(fos);
   b.compress(Bitmap.CompressFormat.JPEG, quality, bos);
   bos.flush();
   bos.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
 }

图片压缩: 


 private static Bitmap compressImage(Bitmap image) {
  if (image == null) {
   return null;
  }
  ByteArrayOutputStream baos = null;
  try {
   baos = new ByteArrayOutputStream();
   image.compress(Bitmap.CompressFormat.JPEG, 100, baos);
   byte[] bytes = baos.toByteArray();
   ByteArrayInputStream isBm = new ByteArrayInputStream(bytes);
   Bitmap bitmap = BitmapFactory.decodeStream(isBm);
   return bitmap;
  } catch (OutOfMemoryError e) {
  } finally {
   try {
    if (baos != null) {
     baos.close();
    }
   } catch (IOException e) {
   }
  }
  return null;
 }

图片缩放: 


 
 public static Bitmap bitmapScale(Bitmap bitmap, float scale) {
  Matrix matrix = new Matrix();
  matrix.postScale(scale, scale); // 长和宽放大缩小的比例
  Bitmap resizeBmp = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
  return resizeBmp;
 }

获取图片旋转角度: 


 
 private static int readPictureDegree(String path) {
  if (TextUtils.isEmpty(path)) {
   return 0;
  }
  int degree = 0;
  try {
   ExifInterface exifInterface = new ExifInterface(path);
   int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
   switch (orientation) {
    case ExifInterface.ORIENTATION_ROTATE_90:
     degree = 90;
     break;
    case ExifInterface.ORIENTATION_ROTATE_180:
     degree = 180;
     break;
    case ExifInterface.ORIENTATION_ROTATE_270:
     degree = 270;
     break;
   }
  } catch (Exception e) {
  }
  return degree;
 }

图片旋转角度: 


  private static Bitmap rotateBitmap(Bitmap b, float rotateDegree) {
    if (b == null) {
      return null;
    }
    Matrix matrix = new Matrix();
    matrix.postRotate(rotateDegree);
    Bitmap rotaBitmap = Bitmap.createBitmap(b, 0, 0, b.getWidth(), b.getHeight(), matrix, true);
    return rotaBitmap;
  }

图片转二进制:


public byte[] bitmap2Bytes(Bitmap bm) {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
    return baos.toByteArray();
  } 

Bitmap转Drawable


public static Drawable bitmapToDrawable(Resources resources, Bitmap bm) {
    Drawable drawable = new BitmapDrawable(resources, bm);
    return drawable;
  } 

Drawable转Bitmap 


 public static Bitmap drawableToBitmap(Drawable drawable) {
    Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565);
    Canvas canvas = new Canvas(bitmap);
    drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
    drawable.draw(canvas);
    return bitmap;
  }

Drawable、Bitmap占用内存探讨
 之前一直使用过Afinal 和Xutils 熟悉这两框架的都知道,两者出自同一人,Xutils是Afina的升级版,AFinal中的图片内存缓存使用的是Bitmap 而后来为何Xutils将内存缓存的对象改成了Drawable了呢?我们一探究竟 
写个测试程序: 


 List<Bitmap> bitmaps = new ArrayList<>();
    start = System.currentTimeMillis();
    for (int i = 0; i < testMaxCount; i++) {
      Bitmap bitmap = BitmapUtils.readBitMap(this, R.mipmap.ic_app_center_banner);
      bitmaps.add(bitmap);
      Log.e(TAG, "BitmapFactory Bitmap--num-->" + i);
    }
    end = System.currentTimeMillis();
    Log.e(TAG, "BitmapFactory Bitmap--time-->" + (end - start));
    List<Drawable> drawables = new ArrayList<>();
    start = System.currentTimeMillis();
    for (int i = 0; i < testMaxCount; i++) {
      Drawable drawable = getResources().getDrawable(R.mipmap.ic_app_center_banner);
      drawables.add(drawable);
      Log.e(TAG, "BitmapFactory Drawable--num-->" + i);
    }
    end = System.currentTimeMillis();
    Log.e(TAG, "BitmapFactory Drawable--time-->" + (end - start));

测试数据1000 同一张图片

从测试说明Drawable 相对Bitmap有很大的内存占用优势。这也是为啥现在主流的图片缓存框架内存缓存那一层采用Drawable作为缓存对象的原因。
 小结:图片处理就暂时学习到这里,以后再做补充。

您可能感兴趣的文章:Android 图片缓存机制的深入理解Android中Glide加载图片并实现图片缓存Android图片缓存原理、特性对比Android图片缓存之初识Glide(三)直接应用项目中的Android图片缓存技术Android中Glide加载库的图片缓存配置究极指南Android实现图片缓存与异步加载Android开发笔记之图片缓存、手势及OOM分析android上的一个网络接口和图片缓存框架enif简析Android图片三级缓存开发


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android图片缓存之Bitmap详解(一)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android图片缓存之Bitmap详解(一)

前言: 最近准备研究一下图片缓存框架,基于这个想法觉得还是先了解有关图片缓存的基础知识,今天重点学习一下Bitmap、BitmapFactory这两个类。 Bitmap: Bitmap是Android系统中的图像处理的最重要类之一。用它可
2022-06-06

Android性能优化之Bitmap图片优化详解

前言 在Android开发过程中,Bitmap往往会给开发者带来一些困扰,因为对Bitmap操作不慎,就容易造成OOM(Java.lang.OutofMemoryError - 内存溢出),本篇博客,我们将一起探讨Bitmap的性能优化。
2022-06-06

详解Android 图片的三级缓存及图片压缩

为什么需要图片缓存 Android默认给每个应用只分配16M的内存,所以如果加载过多的图片,为了防止内存溢出,应该将图片缓存起来。图片的三级缓存分别是:内存缓存本地缓存网络缓存 其中,内存缓存应优先加载,它速度最快;本地缓存次优先加载,它速
2022-06-06

Android图片缓存之初识Glide(三)

前言:前面总结学习了图片的使用以及Lru算法,今天来学习一下比较优秀的图片缓存开源框架。技术本身就要不断的更迭,从最初的自己使用SoftReference实现自己的图片缓存,到后来做电商项目自己的实现方案不能满足项目的需求改用Afinal,
2022-06-06

Android图片缓存之Lru算法(二)

前言: 上篇我们总结了Bitmap的处理,同时对比了各种处理的效率以及对内存占用大小,点击查看。我们得知一个应用如果使用大量图片就会导致OOM(out of memory),那该如何处理才能近可能的降低oom发生的概率呢?之前我们一直在使用
2022-06-06

详解Android中图片的三级缓存及实例

详解Android中图片的三级缓存及实例为什么要使用三级缓存 如今的 Android App 经常会需要网络交互,通过网络获取图片是再正常不过的事了 假如每次启动的时候都从网络拉取图片的话,势必会消耗很多流量。在当前的状况下,对于非wi
2023-05-30

详解android 通过uri获取bitmap图片并压缩

详解android 通过uri获取bitmap图片并压缩很多人在调用图库选择图片时会在onActivityResult中用Media.getBitmap来获取返回的图片,如下:Uri mImageCaptureUri = data.getD
2023-05-30

如何理解Android图片缓存框架Glide

本篇文章给大家分享的是有关如何理解Android图片缓存框架Glide,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Android图片缓存框架GlideGlide是Google
2023-06-05

解析Android开发优化之:对Bitmap的内存优化详解

1) 要及时回收Bitmap的内存 Bitmap类有一个方法recycle(),从方法名可以看出意思是回收。这里就有疑问了,Android系统有自己的垃圾回收机制,可以不定期的回收掉不使用的内存空间,当然也包括Bitmap的空间。那为什么还
2022-06-06

Android开发笔记之图片缓存、手势及OOM分析

把图片缓存、手势及OOM三个主题放在一起,是因为在Android应用开发过程中,这三个问题经常是联系在一起的。首先,预览大图需要支持手势缩放,旋转,平移等操作;其次,图片在本地需要进行缓存,避免频繁访问网络;最后,图片(Bitmap)是An
2022-06-06

详解Android之图片加载框架Fresco基本使用(一)

PS:Fresco这个框架出的有一阵子了,也是现在非常火的一款图片加载框架.听说内部实现的挺牛逼的,虽然自己还没研究原理.不过先学了一下基本的功能,感受了一下这个框架的强大之处.本篇只说一下在xml中设置属性的相关用法. 0.引入Fresc
2022-06-06

详解Flutter网络图片本地缓存的实现

这篇文章主要为大家介绍了详解Flutter网络图片本地缓存的实现示例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-05-16

android上的一个网络接口和图片缓存框架enif简析

1.底层网络接口采用apache的httpclient连接池框架; 2.图片缓存采用基于LRU的算法; 3.网络接口采用监听者模式; 4.包含图片的OOM处理(及时回收处理技术的应用); 图片核心处理类:CacheView.java 代码
2022-06-06

详解android写一个选择图片的示例代码

可以达到的效果第一个图片的位置放照相机,点击打开照相机其余的是显示全部存储的图片,点击一次是查看大图,长按则是每张图片出现一个checkBox,可以进行选择 下面是实例效果图 MainActivity 类public class MainA
2022-06-06

详解Android之图片加载框架Fresco基本使用(二)

PS:最近看到很多人都开始写年终总结了,时间过得飞快,又到年底了,又老了一岁。学习内容: 1.进度条 2.缩放 3.ControllerBuilder,ControllerListener,PostProcesser,Image Reque
2022-06-06

Android异步加载数据和图片的保存思路详解

把从网络获取的图片数据保存在SD卡上,先把权限都加上网络权限 android.permission.INTERNETSD卡读写权限android.permission.MOUNT_UNMOUNT_FILESYSTEMS android.pe
2022-06-06

Android位图(图片)加载引入的内存溢出问题详细解析

Android在加载大背景图或者大量图片时,常常致使内存溢出,下面这篇文章主要给大家介绍了关于Android位图(图片)加载引入的内存溢出问题的相关资料,需要的朋友可以参考下
2022-12-26

Android入门之Glide显示网络图片高版本的使用详解

这篇文章主要为大家详细介绍了Android中Glide显示网络图片高版本的使用方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起了解一下
2023-02-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录