0

我一直在尝试实现一个ListView,它里面有Rating Bar。我有onRatingChanged监听器,我想根据评分更改项目内的TextView 。

问题是,当我触摸星星并更新它时,它会更新另一个TextView 的值。我的适配器扩展了 CursorAdapter。如果我有getView()我想我会解决它,但我不知道如何处理CursorAdapter,因为我们没有使用 getView()。

|------------------|
| TextView         | ---> TextView I want to update
| * * * * *        | ---> Rating Bar
|                  |
|__________________|
4

1 回答 1

1

问题是,当我触摸星星并更新它时,它会更新另一个 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;
    }

}
于 2013-07-26T06:35:00.707 回答