本文主要是介绍Android获取图片的途径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
如何缩放图片的博客:
http://blog.csdn.net/reality_jie_blog/article/details/16891095
实现如何Android 获得图片的总结
接下来让我解说一下,实现如何Android 获得图片的总结.
//1,已将图片保存到drawable目录下
//通过图片id获得Drawable
Resource res=gerResource();
Drawable drawable=res.getDrawable(id);//id为R.drawable.图片名称
//通过图片id获得Bitmap
Resource res=gerResource();
Bitmap bitmap=BitmapFactory.decodeResource(res, id);
//若只知道图片的名称,可以通过图片的名称获得图片的id
//name:图片的名称 defType:图片的类型(png,jpeg),defPackage:工程的包名
int id =int id =res.getIdentifier(name, defType, defPackage);
//获得id之后可以根据你的需要来获得Bitmap或Drawable
//2,已将图片保存到assest目录下
//知道图片的名称,通过inputstream打开图片
AssetManager asm=getAssetMg();
InputStream is=asm.open(name);//name:图片的名称
//获得Drawable
Drawable da = D
这篇关于Android获取图片的途径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!