3 回答
TA贡献1871条经验 获得超13个赞
除了创建一个覆盖newView / bindView或getView的自定义适配器之外,我不确定您将如何执行此操作,具体取决于您覆盖的内容(ResourceCursorAdapter是个不错的选择)。
好的,这是一个例子。我没有测试是否可以编译,因为我正在工作,但这绝对可以为您指明正确的方向:
public class MyActivity extends ListActivity {
MyAdapter mListAdapter;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Cursor myCur = null;
myCur = do_stuff_here_to_obtain_a_cursor_of_query_results();
mListAdapter = new MyAdapter(MyActivity.this, myCur);
setListAdapter(mListAdapter);
}
private class MyAdapter extends ResourceCursorAdapter {
public MyAdapter(Context context, Cursor cur) {
super(context, R.layout.mylist, cur);
}
@Override
public View newView(Context context, Cursor cur, ViewGroup parent) {
LayoutInflater li = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
return li.inflate(R.layout.mylist, parent, false);
}
@Override
public void bindView(View view, Context context, Cursor cur) {
TextView tvListText = (TextView)view.findViewById(R.id.list_text);
CheckBox cbListCheck = (CheckBox)view.findViewById(R.id.list_checkbox);
tvListText.setText(cur.getString(cur.getColumnIndex(Datenbank.DB_NAME)));
cbListCheck.setChecked((cur.getInt(cur.getColumnIndex(Datenbank.DB_STATE))==0? false:true))));
}
}
}
TA贡献1860条经验 获得超8个赞
您可以设置一个自定义SimpleCursorAdapter.ViewBinder:
SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(/* ur stuff */);
cursorAdapter.setViewBinder(new SimpleCursorAdapter.ViewBinder() {
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
if(columnIndex == 1) {
CheckBox cb = (CheckBox) view;
cb.setChecked(cursor.getInt(1) > 0);
return true;
}
return false;
}
});
setViewValue在SimpleCursorAdapter构造函数中为您指定的每个列都调用该方法,并为您提供了一个操作某些(或全部)视图的好地方。
TA贡献2037条经验 获得超6个赞
您可以通过创建自定义CheckBox小部件来解决该问题,如下所示:
package com.example.CustomCheckBox;
public class CustomCheckBox extends CheckBox {
public CustomCheckBox(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public CustomCheckBox(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomCheckBox(Context context) {
super(context);
}
protected void onTextChanged(CharSequence text, int start, int before, int after) {
if (text.toString().compareTo("") != 0) {
setChecked(text.toString().compareTo("1") == 0 ? true : false);
setText("");
}
}
}
当ListView将数据绑定到CheckBox时(即添加“ 0”或“ 1”),将调用onTextChanged函数。这将捕获该更改并添加您的布尔处理。需要第一个“ if”语句,以免产生无限递归。
然后像这样在布局文件中提供您的自定义类:
<com.example.CustomCheckBox
android:id="@+id/rowCheckBox"
android:layout_height="fill_parent"
android:layout_width="wrap_content" />
那应该做!
- 3 回答
- 0 关注
- 488 浏览
添加回答
举报