app开发中把app的res下drawable的图片转换成drawable对象 也是常有的功能
下面就记录下两种转换的方法
第一种 方法
借助ContextCompat 转换方法
Drawable drawable = ContextCompat.getDrawable(context, R.drawable.icon);
window.setBackgroundDrawable(drawable);
第二种方法
通过getResource()获取
Drawable drawable =getResources().getDrawable