我正在尝试从另一个名为insect_details的xml文件中设置图像视图。 以下是我执行此操作的代码:
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.insect_details, null);
myHolder.insectImage = (ImageView) view.findViewById(R.id.insectImage);
InputStream ims = mContext.getApplicationContext().getAssets().open(imageName);
Drawable d = Drawable.createFromStream(ims, null);
myHolder.insectImage.setImageDrawable(d);
当我运行我的程序时,昆虫图像没有被设置为传递给我的InputStream的图像。我没有正确地膨胀xml文件吗?