android – 如何覆盖CursorAdapter bindView

前端之家收集整理的这篇文章主要介绍了android – 如何覆盖CursorAdapter bindView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试从ListView中的Cursor显示信息,每行包含一个ImageView和一个TextView.我有一个CustomCursorAdapter扩展CursorAdapter,在bindView中我评估光标中的数据并根据它设置视图图像和文本.

当我运行应用程序时,ListView显示正确的行数,但它们是空的.我知道我在覆盖bindView时遗漏了一些东西,但我不确定是什么.

任何帮助将不胜感激.

private class CustomCursorAdapter extends CursorAdapter {

  public CustomCursorAdapter() {
    super(Lmw.this,monitorsCursor);
  }

  @Override
  public View newView(Context context,Cursor cursor,ViewGroup parent) {
    LayoutInflater layoutInflater = getLayoutInflater();

    return layoutInflater.inflate(R.layout.row,null);
  }

  @Override
  public void bindView(View view,Context context,Cursor cursor) {
    try {
      int monitorNameIndex = cursor.getColumnIndexOrThrow(DbAdapter.MONITORS_COLUMN_MONITOR_NAME);
      int resultTotalResponseTimeIndex = cursor.getColumnIndexOrThrow(DbAdapter.RESULTS_COLUMN_TOTAL_RESPONSE_TIME);

      String monitorName = cursor.getString(monitorNameIndex);
      int warningThreshold = cursor.getInt(resultTotalResponseTimeIndex);

      String lbl = monitorName + "\n" + Integer.toString(warningThreshold) + " ms";

      TextView label = (TextView) view.findViewById(R.id.label);     
      label.setText(lbl);

      ImageView icon = (ImageView)view.findViewById(R.id.icon);
      if(warningThreshold < 1000) {
        icon.setImageResource(R.drawable.ok);      
      } else {
        icon.setImageResource(R.drawable.alarm);
      }


    } catch (IllegalArgumentException e) {
      // TODO: handle exception
    }
  }
}
最佳答案
bindView()方法似乎没问题.

尝试替换newView()方法

@Override
public View newView(Context context,ViewGroup parent) {
    return mInflater.inflate(R.layout.row,parent,false);
}

并且,出于性能原因:

>在中移动getLayoutInflater()
构造函数
>与所有cursor.getColumnIndexOrThrow()调用相同,
已经说过了
评论
>使用StringBuilder创建lbl文本
>没有必要做Integer.toString(warningThreshold)……
只需使用warningThreshold

稍后编辑:
你的inflate()方法与我建议的方法之间的唯一区别是,这个方法创建了与父级匹配的布局参数.

原文链接:https://www.f2er.com/android/430331.html

猜你在找的Android相关文章