文字列からリソースを取得する必要があります:
私がやること:
InputStream is = ctx.getResources().openRawResource(R.drawable.image1);
必要なもの:
InputStream is = ctx.getResources().openRawResource(getDrawable("image1"));
getDrawable()関数を実装する方法を知っている人はいますか?
ありがとう!
文字列からリソースを取得する必要があります:
私がやること:
InputStream is = ctx.getResources().openRawResource(R.drawable.image1);
必要なもの:
InputStream is = ctx.getResources().openRawResource(getDrawable("image1"));
getDrawable()関数を実装する方法を知っている人はいますか?
ありがとう!