加载大图片 Options options=new Options(); options.inJustDecodeBounds=true;//不加载图片,只加载文件信息 //加载图片,获取到配置信息 BitmapFactory.decodeFile(Environment.getExternalSt...
分类:
移动开发 时间:
2014-08-02 15:25:33
阅读次数:
214
很多Android应用在运行时,会遇到运行缓慢,不流畅等影响用户体验问题,这有一部分原因与图片有密切关系。当android应用需要加载较大较多的照片时,经常反应迟缓,甚至由于OOM,造成系统奔溃。下面将提供一种可行的解决方案。1.获取图片的宽高属性1 BitmapFactory.Options .....
分类:
移动开发 时间:
2014-07-31 20:40:47
阅读次数:
264
publicclassImageUtils{ /** *从SDCard读取图片时压缩 * *@paramsrcPath *@return */ publicstaticBitmapcompressImageFromFile(StringsrcPath, floatww,floathh) { BitmapFactory.OptionsnewOpts=newBitmapFactory.Options(); newOpts.inJustDecodeBounds=true;//只读边,..
分类:
其他好文 时间:
2014-07-31 17:20:37
阅读次数:
187
1.Activitypackage com.fit.touchimage;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.g...
分类:
移动开发 时间:
2014-07-29 12:43:46
阅读次数:
258
今天讲解一下SpannableString和ImageSpan类
Bitmap bitmap = null;
bitmap = BitmapFactory.decodeResource(getResources(), imageIds[arg2 % imageIds.length]);
ImageSpan imageSpan = new ImageSpan(NeighborCommunica...
分类:
移动开发 时间:
2014-07-26 02:45:56
阅读次数:
230
BitmapFactory.Options factoryOptions = new BitmapFactory.Options();// 不将图片读取到内存中,仍然可以通过参数获得它的高宽factoryOptions.inJustDecodeBounds = true;BitmapFactory....
分类:
其他好文 时间:
2014-07-22 22:54:15
阅读次数:
182
package com.kale.utils;import android.content.Context;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.Can...
分类:
其他好文 时间:
2014-07-19 22:38:10
阅读次数:
285
Android实际开发中,在加载大量图片的时候,比如ViewPager、GridView、ListView中,加载了大量的比较大图片就容易出现OOM(内存溢出)的异常,这是因为一个应用的最大内存使用只有16M,超过了这个值,就会出现OOM。所以我们实际开发中,要想避免OOM出现就要对相应的图片进行压缩处理。
本文即使用了BitmapFactory和BitmapFactory.Option这两个类...
分类:
移动开发 时间:
2014-07-17 21:03:37
阅读次数:
340
使用Martix(android.graphics.Matrix)类中的postScale()方法结合Bitmap来实现缩放图片的功能Bitmap bmp = BitmapFactory.decodeResource(getResource(),R.drawalbe.icon1)int bmpwid...
分类:
其他好文 时间:
2014-07-07 16:00:55
阅读次数:
185
java.lang.OutOfMemoryError解决办法
1.在适当的时候适当的地点回收内存
2.使用BitmapFactory.Options对图片进行压缩
3.优化代码结构...
分类:
其他好文 时间:
2014-07-02 08:36:36
阅读次数:
209