gpt4 book ai didi

java - SimpleExpandableListAdapter 和 expandedGroupLayout

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:02:21 24 4
gpt4 key购买 nike

我正在尝试使用 SimpleExpandableListAdapter,无论组是否展开,我都需要不同的布局。

有一个构造函数允许为组传递两个布局:

SimpleExpandableListAdapter(Context context,
List<? extends Map<String, ?>> groupData,
int expandedGroupLayout,
int collapsedGroupLayout,
String[] groupFrom,
int[] groupTo,
List<? extends List<? extends Map<String, ?>>> childData,
int childLayout,
String[] childFrom,
int[] childTo)

我传递了两个不同的布局,但只显示了 collapsedGroupLayout。

任何人都可以使用它吗?

谢谢

最佳答案

看了SimpleExpandableListAdapter的源码,好像有bug:

public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
View v;
if (convertView == null) {
v = newGroupView(isExpanded, parent);
} else {
v = convertView;
}
bindView(v, mGroupData.get(groupPosition), mGroupFrom, mGroupTo);
return v;
}

我们可以看到,如果 convertView 不为 null,则如果 ListView 重用其单元格,则永远不会使用“isExpanded”参数。因此,如果单元格可见并被点击,convertView 将按原样重用,而不会使用其他布局。

对我来说,一个快速的解决方案是每次覆盖 getGroupView 并为 convertView 传递 null:

    @Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
return super.getGroupView(groupPosition, isExpanded, null, parent);
}

更好的解决方案是保留组位置及其状态的列表,如果状态发生变化则不重用 convertView。

关于java - SimpleExpandableListAdapter 和 expandedGroupLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19520037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com