我正在尝试从 Assets.In Assets 中读取图像,我一直在使用 az 文件夹,这些文件夹包含具有文件夹起始名称的图像,例如如果有名为 YImages 的文件夹,则此文件夹中的图像名称也以 Y 字开头。
我正在使用此功能从资产中获取图像:
try {
pics = Drawable
.createFromStream(
getAssets().open(
imageFolder + wordString.get(index)
+ ".jpg"), null);
picture.setBackgroundDrawable(pics);
picture.refreshDrawableState();
} catch (IOException e) {
e.printStackTrace();
}