Android 通过drawable文件名获取图片id并转换为Bitmap格式

简单三行:

Resources res=getResources();
        int pic_id = res.getIdentifier(Picname,"drawable",getPackageName());
     Bitmap bp = BitmapFactory. decodeResource (res,pic_id);

Picname就是图片名,不需要文件名后缀

上一篇:图片跟随鼠标移动


下一篇:linux系统磁盘不足处理方法