问题是,当我触摸星星并更新它时,它会更新另一个 TextView 的值。我的适配器扩展了 CursorAdapter。如果我有 getView(),我想我会解决它,但我不知道如何处理 CursorAdapter,因为我们没有使用 getView()。
就像我在评论中已经说过的,对于Cursor
基于适配器的情况,您将使用newView()
andbindView()
方法。下面是一个小例子:
public class CustomAdapter extends CursorAdapter {
private static final int CURSOR_TEXT_COLUMN = 0;
public CustomAdapter(Context context, Cursor c, int flags) {
super(context, c, flags);
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
ViewHolder holder = (ViewHolder) view.getTag();
holder.text.setText(cursor.getString(CURSOR_TEXT_COLUMN));
holder.progress
.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {
@Override
public void onRatingChanged(RatingBar ratingBar,
float rating, boolean fromUser) {
// basic example on how you may update the
// TextView(you could use a tag etc).
// Keep in mind that if you scroll this row and come
// back the value will reset as you need to save the
// new rating in a more persistent way and update
// the progress
View rowView = (View) ratingBar.getParent();
TextView text = (TextView) rowView
.findViewById(R.id.the_text);
text.setText(String.valueOf(rating));
}
});
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater mInflater = LayoutInflater.from(context);
View rowView = mInflater.inflate(R.layout.row_layout, parent,
false);
ViewHolder holder = new ViewHolder();
holder.text = (TextView) rowView.findViewById(R.id.the_text);
holder.progress = (RatingBar) rowView
.findViewById(R.id.the_progress);
rowView.setTag(holder);
return rowView;
}
static class ViewHolder {
TextView text;
RatingBar progress;
}
}