超炫的3D特效程序管理功能android
[url]http://www.cnblogs.com/tankaixiong/archive/2011/02/26/1965564.html[/url]
eoe的这个...有问题..
Android Gallery控件使用方法详解.
[url]http://www.eoeandroid.com/thread-102959-1-1.html[/url]
Android Gallery控件使用方法详解
[url]http://blog.csdn.net/super005/article/details/5845066[/url]
Android 控件使用之 Gallery
[url]http://blog.csdn.net/dadahacker/article/details/5722916[/url]
Android-ListView实现Gallery效果三-自定义列表
[url]http://disanji.net/2011/01/10/android-listview-gallery-sample-3/[/url]
java.lang.OutOfMemoryError: bitmap size exceeds VM budget解决方法
1.[url]http://www.devdiv.com/thread-49664-1-1.html[/url]
2.[url]http://blog.sina.com.cn/s/blog_672f41790100t35n.html[/url]
完美解决java.lang.OutOfMemoryError: bitmap size exceeds VM budget
[url]http://blog.csdn.net/yangxyjd/article/details/6932989[/url]
3.[url]http://lzyfn123.iteye.com/blog/1457628[/url]
修改如下,没有出现OOM错误
这个讨论的很深入:
[url]http://blog.csdn.net/woshicaixianfeng/article/details/6825295[/url]
解决大问题
[url]http://www.cnblogs.com/tankaixiong/archive/2011/02/26/1965564.html[/url]
eoe的这个...有问题..
Android Gallery控件使用方法详解.
[url]http://www.eoeandroid.com/thread-102959-1-1.html[/url]
Android Gallery控件使用方法详解
[url]http://blog.csdn.net/super005/article/details/5845066[/url]
Android 控件使用之 Gallery
[url]http://blog.csdn.net/dadahacker/article/details/5722916[/url]
Android-ListView实现Gallery效果三-自定义列表
[url]http://disanji.net/2011/01/10/android-listview-gallery-sample-3/[/url]
java.lang.OutOfMemoryError: bitmap size exceeds VM budget解决方法
1.[url]http://www.devdiv.com/thread-49664-1-1.html[/url]
2.[url]http://blog.sina.com.cn/s/blog_672f41790100t35n.html[/url]
完美解决java.lang.OutOfMemoryError: bitmap size exceeds VM budget
[url]http://blog.csdn.net/yangxyjd/article/details/6932989[/url]
3.[url]http://lzyfn123.iteye.com/blog/1457628[/url]
BitmapFactory.Options opts = new BitmapFactory.Options();
opts.inJustDecodeBounds = true;
BitmapFactory.decodeFile(imageFile, opts);
opts.inSampleSize = computeSampleSize(opts, -1, 128*128);
opts.inJustDecodeBounds = false;
try {
Bitmap bmp = BitmapFactory.decodeFile(imageFile, opts);
imageView.setImageBitmap(bmp);
} catch (OutOfMemoryError err) {
}
修改如下,没有出现OOM错误
opts.inSampleSize = computeSampleSize(opts, -1, 1024*1024);
这个讨论的很深入:
[url]http://blog.csdn.net/woshicaixianfeng/article/details/6825295[/url]
public static Bitmap readBitMap(Context context, int resId){
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inPreferredConfig = Bitmap.Config.RGB_565;
opt.inPurgeable = true;
opt.inInputShareable = true;
InputStream is = context.getResources().openRawResource(resId);
return BitmapFactory.decodeStream(is,null,opt);
}
解决大问题