プロジェクトのコードのこのリンクを使用して、Java クラスから Drawable 画像を取得しようとしています。
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);
しかし、これには運がありません...私のプロジェクトのドローアブルから画像を取得するには助けが必要です....