标签: android
我为GridView内的每个单元格保留了标签。一旦我的自定义适配器绘制了gridview,我希望访问gridview中的一个特定单元格。
GridView
我尝试了以下内容:
view = mygridView.findViewWithTag(tag);
但返回的视图为null。 我如何访问gridview内的单元格?
提前谢谢。
答案 0 :(得分:1)
尝试使用gridView.getChildAt(i).findViewWithTag(tag);
gridView.getChildAt(i).findViewWithTag(tag);
希望它会有所帮助..;)