我需要通过指定图像的名称并将其设置为Drawable从资产文件夹中获取图像。
drw = Drawable.createFromStream(getAssets().open("/assets/images/"+drawables[i]),null);
但我得到File not found exception
了 .(images 是 assets 和 drawables[i] 的子文件夹 - 图像的名称(比如“ball.jpg”)。
我需要通过指定图像的名称并将其设置为Drawable从资产文件夹中获取图像。
drw = Drawable.createFromStream(getAssets().open("/assets/images/"+drawables[i]),null);
但我得到File not found exception
了 .(images 是 assets 和 drawables[i] 的子文件夹 - 图像的名称(比如“ball.jpg”)。