有一个ListView
和list_row xml,其中包含LinearLayout
背景图像。要求是在加载数据时在第一行显示图像。ListView
然后在点击行时显示和隐藏图像ListView
。
ViewGroup vg = (ViewGroup) ListView.getAdapter().getView(0, null, null);
TableRow selectedRow = (TableRow) vg.getChildAt(0);
LinearLayout ll = (LinearLayout) selectedRow.getChildAt(0);
ll.setVisibility(View.VISIBLE);
我使用了上面的源代码并尝试这样做。但这不起作用并且不返回任何空对象。显示和隐藏部分正在使用ItemClickListner
。但是我需要在加载数据时显示图像。我尝试在适配器类中执行此操作,并且能够显示图像。但是当点击其他行时无法隐藏它。ListView
如何解决此问题?提前致谢。