我正在尝试在我的项目中使用此代码链接从我的 java 类中获取可绘制图像。
private Drawable imgCloseButton = getResources().getDrawable(R.drawable.arrow_up_float);
但它只显示系统图像列表,而不是我的 Drawable 文件夹....
我也用这段代码来解决它......
String uri = "@drawable/app_icon";
int imageResource = getResources().getIdentifier(uri, null,
"com.esysolutions.dilosys.v2.utility");
private Drawable imgCloseButton = getResources().getDrawable(imageResource);
但是没有运气......需要帮助从我的项目中获取图像可绘制......