我使用RadioButtons
在ListItem
中有3个CursorAdapter
以及一些文字。当我点击RadioButton
中的任何ListItem
时,我需要获取视图(ListItem)位置。因为,点击RadioButton
并不意味着我点击了ListItem。
答案 0 :(得分:1)
在bindView或newView中:
RadioButton radioButton = (RadioButton) view.findViewById(R.id.radio_button_id);
radioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
Log.d(TAG, cursor.getPosition());
}
});
还要确保在方法参数中将游标声明为final。