安卓:从数据库将数据绑定到一个ListView一个CheckBox?(Android: Bindin

2019-07-20 11:12发布

我想从我的数据绑定SQLiteDatabaseListView 。 我目前使用SimpleCursorAdapter填写我ListView 。 不幸的是这似乎不符合设置复选框的选中属性的工作。

这是我现在该怎么办呢; 而不是改变CheckBox的检查状态的适配器填充值的文本参数,所以该值显示该复选框为文本的权利。

Java的:

setListAdapter( new SimpleCursorAdapter( this,
      R.layout.mylist,
      data,
      new String[] { Datenbank.DB_STATE, Datenbank.DB_NAME },
      new int[] { R.id.list_checkbox, R.id.list_text }
    ) );

mylist.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>

<CheckBox android:text=""
    android:id="@+id/list_checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="false"
    ></CheckBox>

<TextView android:text=""
    android:id="@+id/list_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ></TextView>

</LinearLayout>

编辑:在数据库中的字段是布尔类型的,当然,我也试着分配一个id,选中的字段填写值。

Answer 1:

我不知道你怎么会除了创建推翻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))));
        }
    }
}


Answer 2:

您可以设置自定义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构造,让您的意见的好地方操纵部分(或全部)。



Answer 3:

您可以通过创建一个自定义的复选框控件像这样解决这个问题:

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中数据绑定到复选框onTextChanged功能将被调用(即添加“0”或“1”)。 这将赶上变化,并添加您的布尔处理。 “如果”是必须的第一个语句,以便不产生无限递归。

然后提供您的自定义类布局文件,例如:

<com.example.CustomCheckBox
 android:id="@+id/rowCheckBox"
 android:layout_height="fill_parent"
 android:layout_width="wrap_content" />

应该这样做!



文章来源: Android: Binding data from a database to a CheckBox in a ListView?