我有添加孩子的问题,当我添加一个孩子然后在ui两个孩子出现相同的孩子位置..我的问题类似于以下问题中提到的这些
Child Layout is repeating many times in ExpandableListView
https://*.com/questions/10938763/double-child-entries-in-expandablelistview
但无法找到解决方案..请参阅我的代码here
使用此双维数组给出了儿童的价值.
String[][] child = {
mContext.getResources().getStringArray(R.array.alerts),
mContext.getResources().getStringArray(R.array.alerts),
mContext.getResources().getStringArray(R.array.alerts),
mContext.getResources().getStringArray(R.array.alerts),
mContext.getResources().getStringArray(R.array.alerts) };
我用过这个:
@Override
public int getChildrenCount(int groupPosition) {
return child.length;
}
但是对于这个,孩子的数量是5,它显示了10个项目..
解决方法:
看来你是硬编码的孩子位置,
@Override
public int getChildrenCount(int groupPosition) {
return 1;
}
它应该是your_data_collection_size
另外,你有像硬编码的childId,
@Override
public long getChildId(int groupPosition, int childPosition) {
return 0;
}
应该是childPosition不是0
如果您还有任何疑问/问题,可以下载并检查我的demo example from you github
,如果您有任何疑问,可以随时回复我.