我有一个:
public class MyList extends ListActivity {
SimpleAdapter simpleAdapter;
绑定到ListView
由 a 完成ViewBinder
:
simpleAdapter = new SimpleAdapter(this, getData(path),
R.layout.menu_row, new String[] {
..., "checked" }, new int[] {..., R.id.checkBox1 });
SimpleAdapter.ViewBinder viewBinder = new SimpleAdapter.ViewBinder() {
@Override
public boolean setViewValue(View view, Object data,
String textRepresentation) {
if (view.getId() == R.id.checkBox1) {
CheckBox checkBox = (CheckBox) view;
checkBox.setChecked(Boolean.parseBoolean((String) data));
我的 xml 看起来像这样,clickable
并focusable
有助于将行视为一个。
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
/>
我还有一个:
protected void onListItemClick(ListView l, View v, int position, long id) {
它与点击事件交互。到目前为止效果很好,我的问题是当我点击一行时,CheckBox
它不会改变它的视觉状态。我能做些什么?