如何避免setViewValue中的TextView / TextSwitcher更新?

时间:2011-05-22 16:41:22

标签: android android-listview

我在setViewValue的代码中更新了TextSwitcher的文本。但是如果数据库值没有改变,我想避免它的更新。 这是我目前的代码:

public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
    int viewId = view.getId();
    switch(viewId) {
    case R.id.timetext:
         TextSwitcher twTime = (TextSwitcher) view;
         // something is wrong in the next line
         if (!cursor.getString(columnIndex).equals(getText(viewId)))
         {
            twTime.setText(cursor.getString(columnIndex));
         }
         return true;

不知何故,数据仍在更新中。为什么呢?

getText()看起来无效TextSwitcher。如何获得它的价值?

1 个答案:

答案 0 :(得分:2)

好的,我找到了答案。 首先,要使用TextSwitcher的文本,应使用以下代码:

TextView tv = (TextView) twTime.getCurrentView();
if (!cursor.getString(columnIndex).equals(tv.getText().toString())) {
    twTime.setText(cursor.getString(columnIndex));
}

但在此之前

twTime.setCurrentText(cursor.getString(columnIndex));

应该使用。