没有 children 的 ExpandableListView 抛出 indexOutOfBoundsException

ExpandableListView with no children throws indexOutOfBoundsException

我有一个 ExpandableListView,有些组有 children 而有些没有,我需要做的是只扩展有 children.

的组

部分 body 数组元素为空,因此,我得到一个 IndexOutOfBoundsException

    class ExpandableInnerCartAdapter(
        var context: Context,
        var expandableListView: ExpandableListView,
        var header: MutableList<Cart>,
        val isTerminadoFragment:Boolean
    ) : BaseExpandableListAdapter() {
    
        val map = SparseBooleanArray()
        var body: List<List<String>> = listOf()
    
        override fun getGroup(groupPosition: Int): Cart {
           return header[groupPosition]
        }
    
        override fun isChildSelectable(groupPosition: Int, childPosition: Int): Boolean {
           return true
        }
    
        override fun hasStableIds(): Boolean {
            return false
        }
    
        fun getCart(): MutableList<Cart> = header
        fun getCheckedArray():SparseBooleanArray = map
    
        override fun getGroupView(
            groupPosition: Int,
            isExpanded: Boolean,
            convertView: View?,
            parent: ViewGroup?
        ): View {
    
            var convertView = convertView
            if(convertView == null){
                val inflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
                convertView = inflater.inflate(R.layout.layout_group,null)
            }
            val item = header[groupPosition]
            body = listOf(item.optionList)
            expandableListView.expandGroup(groupPosition)
            expandableListView.setGroupIndicator(null)
            convertView.item_name.text = item.productName
           
            return convertView
    
        }
    
        override fun getChildrenCount(groupPosition: Int): Int {
            return body[groupPosition].size
        }
    
        override fun getChild(groupPosition: Int, childPosition: Int): Any {
            return body[groupPosition][childPosition]
        }
    
        override fun getGroupId(groupPosition: Int): Long {
            return groupPosition.toLong()
        }
    
        override fun getChildView(
            groupPosition: Int,
            childPosition: Int,
            isLastChild: Boolean,
            convertView: View?,
            parent: ViewGroup?
        ): View {
            var convertView = convertView
            if(convertView == null){
                val inflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
                convertView = inflater.inflate(R.layout.layout_child,null)
            }
            if(getChildrenCount(groupPosition) > 0){
                val title = convertView?.findViewById<TextView>(R.id.tv_title)
                title?.text = "Opción ${childPosition+1} -> ${getChild(groupPosition,childPosition)}"
            }
    
            return convertView!!
        }
    
        override fun getChildId(groupPosition: Int, childPosition: Int): Long {
            return childPosition.toLong()
        }
    
        override fun getGroupCount(): Int {
            return header.size
        }
    }

错误似乎是在没有组 children 并尝试做

时发生的
    expandableListView.expandGroup(groupPosition)

我已尝试使用 if 语句解决问题:

    if(body.isNotEmpty()){
        expandableListView.expandGroup(groupPosition)
    }

但是这个解决方案不起作用。

如何避开没有 children 的群组?

谢谢

当您使用 Kotlin 时,您可以随意使用许多有用的扩展函数。其中之一是 filter,您当然可以为其指定条件。

解决方案是从您设置为新 body 值的列表中过滤掉空数组:

    body = listOf(item.optionList).filter { it.isNotEmpty() }

过滤函数定义可见here.