Questions tagged «expandablelistview»


5
在可展开列表视图中展开所有子项
我想在填充可扩展列表视图时扩展所有子级。目前,我的代码如下所示: ExpandableListView listView = (ExpandableListView) findViewById(R.id.view); int count = viewAdapted.getGroupCount(); for (int position = 1; position <= count; position++) listView.expandGroup(position - 1); 这很丑。有更好的方法吗?

3
如何完全隐藏ExpandableListView的groupIndicator?
我想在自定义ExpandableListView中完全隐藏groupIndicator。 此处提供的示例似乎无效。 它建议创建一个选择器并使用我复制的expList.setGroupIndicator(selector): <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/empty_icon"> <item android:state_empty="true" android:drawable="@android:color/transparent"/> <item android:state_expanded="true" android:drawable="@android:color/transparent" /> <item android:drawable="@android:color/transparent" /> </selector> 这给出了以下错误ERROR/AndroidRuntime(10675): Caused by: android.content.res.Resources$NotFoundException: Resource is not a Drawable (color or path): TypedValue{t=0x12/d=0x0 a=2 r=0x7f0b0013} 使用android:id / empty代替color / transparent的类似建议也给出了相同的建议。 如何完全隐藏组指示器? 编辑:事实证明,如果将代码放在可绘制资源文件夹中而不是布局中,则该代码可以工作。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.