我正在开发一个使用标签的应用程序。访问这些应该尽可能简单。使用 AutoCompleteTextView 似乎适合我。我想要的是:
- 现有标签应显示在一个可选列表中,每个项目的一侧都有一个 CheckBox
- 现有标签应在 AutoCompleteTextView 的焦点上显示(即不是在键入字母后)
到目前为止,我所做的是将标签存储在专用的 sqlite3 表中。查询标签会产生光标。游标被传递给 SimpleCursorAdapter,如下所示:
Cursor cursor = dbHelper.getAllTags();
startManagingCursor(cursor);
String[] columns = new String[] { TagsDB._TAG};
int[] to = new int[] { R.id.tv_tags};
SimpleCursorAdapter cursAdapt = new SimpleCursorAdapter(this, R.layout.tags_row, cursor, columns, to);
actv.setAdapter(cursAdapt);
如您所见,我创建了如下所示的tags_row.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:paddingLeft="4dip" android:paddingRight="4dip"
android:orientation="horizontal">
<TextView android:id="@+id/tv_tags" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="1"
android:textColor="#000" android:onClick="actv_item_click" />
<CheckBox android:id="@+id/cb_tags" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:onClick="actv_item_checked" />
</LinearLayout>
它看起来像这样:
图片 http://img708.imageshack.us/img708/5992/devicem.png
所以结果就像我想要的那样显示。但是 TextView 的 onClick 监听器没有响应。而且我不知道一旦(取消)选择项目后如何访问数据。
列表的行为应如下所示:
- 点击 CheckBox 项目应将相应的标签插入/附加到 AutoCompleteTextView (标签将以分号分隔)
- 点击 TextView 项目应将相应的标签插入/应用到 AutoCompleteTextView 并关闭列表。