单击子项时如何查找节头位置?

时间:2016-11-22 14:17:13

标签: android listview

我有一个列表视图,其中有两个部分,一个是标题,另一个是child.so,当点击子项时如何获得相应的标题位置

1 个答案:

答案 0 :(得分:0)

你可以从parrent为孩子添加一个标签,例如: textView是例如header,当你点击child时,button1是child,parrent文本被修改

  TextView textView = ((TextView)findViewById(R.id.textListView)).setText("some text");


Button button1 = (Button) findViewById(R.id.button1);
button1.setOnClickListener(this);
button1.setTag(textView);

在onClickListener中:

 public void onClick(View v) {
    TextView text = (TextView) v.getTag();
    text.setText("new text");
 }