辅助问题
嗨,有人可以帮我理解SimpleCursorAdapter.ViewBinder.setViewValue
的行为吗?
似乎ListView
中的每一行都会多次调用它。调用次数是否取决于ListView中的行数?或SimpleCursorAdapter
光标中的项目数量?另外,传递给函数的参数的意义是什么?
我在尝试创建ListView
CheckedTextViews
的简单ListView
时遇到了这个奇怪的问题。我想减少检查行的不透明度。我写的代码工作,除了它总是会减少一个额外行的不透明度。
使ListActivity
的layout_height为match_parent解决了某些情况下的问题。但是,当我打开键盘进行编辑并且ListView以某种方式需要时,问题仍然存在。
请在此处找到代码
填写private void fillDataToList() {
Cursor all_taskCursorCursor = mDbHelper.fetchAllTask();
startManagingCursor(all_taskCursorCursor);
String[] from = new String[]{TaskDbAdapter.KEY_TITLE};
int[] to = new int[]{R.id.task_title};
SimpleCursorAdapter tasks = new SimpleCursorAdapter(this, R.layout.task_row, all_taskCursorCursor, from, to);
tasks.setViewBinder(new ViewBinder() {
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
if(columnIndex == 1) {
CheckedTextView ctv = (CheckedTextView) view;
String text = cursor.getString(cursor.getColumnIndexOrThrow(TaskDbAdapter.KEY_TITLE));
boolean checked = cursor.getInt(cursor.getColumnIndexOrThrow(TaskDbAdapter.KEY_COMPLETED)) == 1 ? true : false;
ctv.setText(text);
ctv.setChecked(checked);
if (checked == true) {
AlphaAnimation animation = new AlphaAnimation(1, 0.25f);
animation.setFillAfter(true);
ctv.setAnimation(animation);
ctv.setPaintFlags(Paint.STRIKE_THRU_TEXT_FLAG);
}
return true;
}
return false;
}
});
setListAdapter(tasks);
}
中的项目的代码:
<?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="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/no_task"
android:padding="10dp"
android:gravity="center_vertical|center_horizontal"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
ListView的布局 -
<?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="fill_parent" >
<CheckedTextView
android:id="@+id/task_title"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:padding="10dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:checkMark="?android:attr/listChoiceIndicatorMultiple" />
</LinearLayout>
每行的布局 -
{{1}}
答案 0 :(得分:0)
通过向if(checked == true)part添加一个else条件来解决问题。
最终代码如下所示 -
if (checked == true) {
AlphaAnimation animation = new AlphaAnimation(1, 0.25f);
animation.setFillAfter(true);
ctv.setAnimation(animation);
ctv.setPaintFlags(ctv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
} else {
ctv.setPaintFlags(ctv.getPaintFlags() & (~ Paint.STRIKE_THRU_TEXT_FLAG));
}