使用getChildAt(),我们可以在列表视图中获取特定行的视图。同样,我们可以在可扩展列表视图中获取特定的子视图吗?
答案 0 :(得分:0)
@Override
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
TextView tv = (TextView)v.findViewById(R.id.xxx);
String mChildValue = tv.getText().toString();
}