set Tag to Every Child in expandable list
问题 I using Expandable list in my project.I extends BaseExpandableListAdapter,I want to set unique tag to every child, i use following code to set tag: public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) { ArrayList<String> childtemp= (ArrayList<String>) childitems.get(groupPosition); final ViewHolder holder; View v = convertView; if (v == null) { holder = new ViewHolder(); v = inflatter.inflate(R.layout.childrow, null); holder