1

这个问题已经在我脑海中停留了一段时间。

我需要做的:显示一个列表视图,其中包含列表视图中项目的交替资源。

我的问题是什么:到目前为止,我可以替代资源但不显示数据,或者显示数据但不显示替代资源。第一项每次都运行良好,但从那里开始就没有了。我想我很接近,但我只是想不出出了什么问题......

我做了什么:我使用了一个自定义的简单光标适配器。

代码在哪里:

public class DialogCursor extends SimpleCursorAdapter {

private LinearLayout wrapper;
private TextView burbuja;

  public DialogCursor(Context context, int layout, Cursor c, String[] from,
        int[] to, int flags) {
    super(context, layout, c, from, to, flags);
    // TODO Auto-generated constructor stub
}



@Override 
  public View getView(int position, View convertView, ViewGroup parent) {  

    View row = convertView;

    if (row == null) {


        Context context = parent.getContext();
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        row = inflater.inflate(R.layout.dialogo_row, parent, false);

    }
    burbuja = (TextView) row.findViewById(R.id.idiomaselec);
    wrapper = (LinearLayout) row.findViewById(R.id.wrapper);

   //get reference to the row
   View view = super.getView(position, convertView, parent); 
   Log.d("Dialogo","enters getview");
   Log.d("Dialogo",Integer.toString(position));
   //check for odd or even to set alternate colors to the row background
   if(position % 2 == 0){  
    Log.d("Dialogo","Even");
    burbuja.setBackgroundResource(R.drawable.bubble_green);
    wrapper.setGravity(Gravity.LEFT);
   }
   else {
    Log.d("Dialogo","not even");
    burbuja.setBackgroundResource(R.drawable.bubble_yellow);
    wrapper.setGravity(Gravity.RIGHT);  
   }

   return row; 
  }

}

游标适配器是从其他类调用的(仅显示相关部分)

String[] from = new String[] { DialogoTable.TABLE_DIALOGO + "." + 列 };

// 我们将 final int[] 映射到的 UI 上的字段 = new int[] { R.id.idiomaselec};

Log.d("Dialogo","entra en fillData2");
getLoaderManager().initLoader(0, null, this);
if (bot)  {
    Log.d("Dialogo","entra en fillData2.5");
    getLoaderManager().restartLoader(0, null, this);
}

adapter2 = new DialogCursor(this, R.layout.dialogo_row, null, from, to, 0);

setListAdapter(adapter2); 

和输出:如果我返回行(最后一行代码)我在正确的位置获得背景资源但没有数据如果我返回视图(最后一行代码)我得到数据但只有第一项具有正确的背景资源。

最后一点:我遵循了这个例子 http://adilsoomro.blogspot.com/2012/12/android-listview-with-speech-bubble.html 但我不想创建一个类消息,因为我从我的数据中获取数据D B。

谢谢您的帮助 :)

4

1 回答 1

0

在类似的情况下,我能够根据光标位置自定义 cursorAdapter 备用资源。我将以下代码放在我的 bindView 中,其中 entryView 是传入的视图。我完全覆盖了getView。

if(cursor.getPosition()%2 == 1){
     entryView.findViewById(R.id.title_relative).setBackgroundColor(getResources().getColor(R.color.orange));
}else{
     entryView.findViewById(R.id.title_relative).setBackgroundColor(getResources().getColor(R.color.blue));
}
于 2014-02-21T23:59:11.273 回答