繁体   English   中英

ListView内部的评级栏混合了列表项

[英]Rating Bar inside ListView mixes list items

我一直在尝试实现ListView ,里面有Rating Bar 我有onRatingChanged侦听器,并且我想根据等级更改项目内的TextView

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

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

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

就像我在基于Cursor的适配器的评论中已经说过的那样,您将使用newView()bindView()方法。 下面是一个小例子:

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;
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM