我正在尝试通过将代码中的 url 更改为图像视图来显示图像。如何将布局中图像视图的资源 ID 转换为 ImageView 对象。应用小部件中没有 findViewById,RemoteViews 有 setImageViewResource 但它只接受可绘制对象,而不接受布局 xml 中的 id。各位大侠请帮忙。。
ImageView logoView = new ImageView();
logoView.setImageResource(R.id.merchant_image);//this is error as this id is not in drawable but in layout.
请指导..