我正在使用BaseAdapter将数据放入grid_view。在适配器中,我可以单击image_view(愿望清单图标/ img_wishlist)。
如果单击img_wishlist,我希望它请求使用齐射向服务器更新数据并返回字符串“ status”。
如果状态等于“已添加”,则此img_wishlist会将资源更改为icon_wishlist_full。
如果状态不等于“已添加”(“已删除”),则此img_wishlist会将资源更改为icon_wishlist_o
我在BaseAdapter上的getView中创建了此脚本
WIFI_MODE_APSTA
我尝试使用 img_wishlist.setImageResource(R.drawable.icon_wishlist_full); 更改图像资源,但仍然无法正常工作。
在Vollery请求更新数据后如何更改imageResource?