Firing onClick event of child component within RelativeLayout
I have an expandable list with childView layout below. I can't trigger onClick event of ImageView inside the RelativeLayout
layout
adapter
override fun getChildView(
listPosition: Int,
expandedListPosition: Int,
isLastChild: Boolean,
convertView: View?,
parent: ViewGroup
): View? {
var convertView = convertView
val name = (getChild(listPosition, expandedListPosition) as...