我有这个代码:
popular_gridview = (GridView) findViewById(R.id.popular_gridview);
image_adapter = new ImageAdapter(getApplicationContext());
popular_gridview.setAdapter(image_adapter);
ImageView iv = (ImageView) image_adapter.getView(3, null, null);
iv.setImageDrawable(R.drawable.star);
前三行有效,第四和第五行无效。我想在设置后更改适配器中的一项,但没有任何反应。也许有人知道该怎么做?我将非常感谢您的解决方案。谢谢!