我有一个 ListView 项目/单元格,它有几个层、相对层、线性布局等。我尝试在按钮的 onClick 内执行 v.getParent() ,但它只是向上一层。如何在 onClick 事件处理程序中获取对当前元素根的引用?
这是我的 getView()
Button v = (Button)findViewById(R.id.myButton);
v.setOnClickListener(new OnClickListener(){
onClick(View v) {
//Right here I want to find another view inside the cell.
View otherView = ???.findViewById(R.id.myOtherViewInListItem);
otherView.setBackgroundColor(...);
.........................................
}
});