Cardview在RecyclerView选择多卡,而不只是一个

问题描述 投票:0回答:1

我创建其中创建cardview并插入通过recycleview一个简单的Android应用程序。我已经添加的可能性来选择每一个卡,它改变了文本的颜色,并使其在卡上可见。问题是,当你点击第一个卡上,选择效果也加入到了最后一张牌,因为如果有计数或某事的错误。实际上第一个和最后一个卡连接,就好像它们是相同的,如下面的图片所示:

[1]:https://imgur.com/a/PndmbHf

[2] https://imgur.com/a/0epn5p8

我还没有发现任何这类问题的身边,但我已经过去发生的事情,以应对与cardview的相互作用这样的问题。这是我的适配器执行此代码:

public class AllMovesListAdapter extends RecyclerView.Adapter<AllMovesListAdapter.UserViewHolder> {
private static CardView card;
private List<moveListActivity.move_card> moveList;
private static Context context;
int[] counter;

public AllMovesListAdapter(List<moveListActivity.move_card> biglList, Context context) {
    this.moveList = biglList;
    this.context = context;
}

@Override
public UserViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View view = LayoutInflater.from(context).inflate(R.layout.move_card, null);
    UserViewHolder userViewHolder = new UserViewHolder(view);
    counter = new int[getItemCount()];
    return userViewHolder;
}

@Override
public void onBindViewHolder(final UserViewHolder holder, int position) {
    moveListActivity.move_card mcard = moveList.get(position);
    holder.tvName.setText(mcard.getName());
    holder.tvDescr.setText(mcard.getDescr());
    holder.itemView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            int position = holder.getAdapterPosition();
            if (position!=RecyclerView.NO_POSITION){
                if (counter[position]==0){
                    holder.ivTr.setVisibility(View.VISIBLE);
                    holder.tvName.setTextColor(ContextCompat.getColor(context, R.color.green));
                    holder.tvDescr.setTextColor(ContextCompat.getColor(context, R.color.green));
                    counter[position]=1;
                }else{
                    holder.ivTr.setVisibility(View.GONE);
                    holder.tvName.setTextColor(ContextCompat.getColor(context, R.color.white));
                    holder.tvDescr.setTextColor(ContextCompat.getColor(context, R.color.white));
                    counter[position]=0;
                }
                Snackbar.make(v, "Click detected on item " + position + "| counter: " + counter[position],
                        Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }

        }
    });
}

@Override
public int getItemCount() {
    return moveList.size();
}

public static class UserViewHolder extends RecyclerView.ViewHolder {
    ImageView ivMove, ivTr;
    TextView tvName;
    TextView tvDescr;

    public UserViewHolder(View itemView) {
        super(itemView);
        ivTr = (ImageView) itemView.findViewById(R.id.ivTr);
        ivMove = (ImageView) itemView.findViewById(R.id.ivMove);
        tvName = (TextView) itemView.findViewById(R.id.tvName);
        tvDescr = (TextView) itemView.findViewById(R.id.tvDescr);

    }
}
}

有谁知道这个问题取决于?我只是想通过这种方法来实现的卡列表中的多选。 (我不知道,今后我会处理一些cardview,所以我想用UAN recyclerview而不是.xml文件创建个人卡。

编辑:更新的代码的建议,leojg。移动onClick事件管理onBindViewHolder。但问题依旧。

android android-recyclerview cardview
1个回答
0
投票

这是因为回收视图回收物品位置,当它熄灭的画面。

您应该的onclick逻辑移到onBindViewHolder()

© www.soinside.com 2019 - 2024. All rights reserved.