美文网首页
Android 资源文件转Drawable、Bitmap

Android 资源文件转Drawable、Bitmap

作者: 谁动了我的代码QAQ | 来源:发表于2018-08-07 11:15 被阅读0次

资源文件转drawable文件

  Resources resources = mContext.getResources();
  Drawable drawable = resources.getDrawable(R.drawable.a);
  imageview.setBackground(drawable);

资源文件转Bitmap

  BitmapFactory.decodeResource(getResources(), R.drawable.appicon))

相关文章

网友评论

      本文标题:Android 资源文件转Drawable、Bitmap

      本文链接:https://www.haomeiwen.com/subject/jbyovftx.html