GridLayout setAdapter

时间:2013-12-20 02:55:01

标签: adapter android-gridlayout

我需要通知Gridlayout内部的图像已更改。 使用GridView很容易:

adapterForImage.notifyDataSetChanged();
gridview.setAdapter(adapterForImage);

如何处理GridLayout? 感谢

1 个答案:

答案 0 :(得分:0)

GridLayout与GridView之类的适配器无关。我怀疑你只是想使用类似CursorLoader的东西,它会自动注册一个内容观察者。当与提供者关联的内容发生更改时,您可以使整个GridLayout无效---或者您可以使您知道需要更新的视图无效。