【问题标题】:click on recyclerAdapter works weird on large dataset but works fine on small dataset点击 recyclerAdapter 在大数据集上工作很奇怪,但在小数据集上工作正常
【发布时间】:2018-03-31 19:31:58
【问题描述】:

我有一个回收器服务适配器,视图是某种从某个 xml 文件创建的复杂按钮:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/services_container"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginStart="20dp"
    android:layout_marginTop="15dp"
    android:gravity="center_horizontal"
    android:orientation="vertical">

    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/services_place_holder"
        android:layout_width="@dimen/viewPlaceHolderWidth_services"
        android:layout_height="@dimen/viewPlaceHolderHeight_services"
        android:layout_marginTop="10dp"
        android:background="@drawable/rounded_view_selector_services"
        android:focusable="false"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        app:layout_constraintTop_toTopOf="@id/services_container">

        <TextView
            android:id="@+id/service_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:background="@drawable/rounded_text_view_for_services"
            android:paddingBottom="2dp"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:paddingTop="2dp"
            android:text="۲۳۲۲۲۳۵۶۶"
            android:textAlignment="center"
            android:textColor="@color/colorWhite"
            android:textSize="12sp"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <ImageView
            android:id="@+id/service_image"
            android:layout_width="38dp"
            android:layout_height="38dp"
            android:layout_marginEnd="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginTop="6dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/service_price"
            app:srcCompat="@drawable/placeholder_blue" />

        <me.grantland.widget.AutofitTextView
            android:id="@+id/service_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="11dp"
            android:layout_marginStart="11dp"
            android:layout_marginTop="2dp"
            android:layout_marginBottom="2dp"
            android:paddingLeft="8dp"
            android:paddingRight="8dp"
            android:maxLines="1"
            android:text="پرستار"
            android:textColor="@color/colorElahiyeBlue"
            android:textSize="18sp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/service_image"
            app:minTextSize="6sp" />
    </android.support.constraint.ConstraintLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="-120dp"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/services_gender_image"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:src="@drawable/available_gender" />

        <ImageView
            android:id="@+id/services_prescription_image"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_marginLeft="7dp"
            android:layout_marginStart="7dp"
            android:src="@drawable/available_picture" />

        <ImageView
            android:id="@+id/services_info_image"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_marginLeft="7dp"
            android:layout_marginStart="7dp"
            android:src="@drawable/info" />
    </LinearLayout>
</LinearLayout>

我有一个服务适配器来处理其中的点击事件,数据集是使用改造从 Web 服务加载的,这没有问题,但我的问题是我想点击每个项目的背景和一些要更改和存储的其他 UI 和位置,当数据集低于 4 时一切正常,但当数据集约为 6 或更多时,会出现一些奇怪的行为,例如:当我单击一个项目时,另一个项目是clicked ,我管理点击的方式是通过我的视图布局 "services_container" 或 "services_place_holder" 的 isFocusable ,适配器代码在这里:

public class ServicesAdapter extends RecyclerView.Adapter<ServicesAdapter.ViewHolder> {

    private List<Integer> selectedServices = new ArrayList<>();
    private LayoutInflater mInflater;
    private ItemClickListener mClickListener;
    private Context mContext;
    private int row_index = -1;

    // data is passed into the constructor
//    public FieldOfEmploymentAdapter(Context context, List<Integer> colors, List<String> servicesDataItemsList) {
    ServicesAdapter(Context context, List<ServicesDataItems> servicesDataItemsList) {
        mContext = context;
        this.mInflater = LayoutInflater.from(context);
//        this.mViewColors = colors;
        this.servicesDataItemsList = servicesDataItemsList;
    }

    // inflates the row layout from xml when needed
    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = mInflater.inflate(R.layout.services_items, parent, false);
        ViewHolder viewHolder = new ViewHolder(view);
        return viewHolder;
    }

    // binds the data to the view and textview in each row
    @Override
    public void onBindViewHolder(final ViewHolder holder, final int position) {
//        int color = mViewColors.get(position);
        final ServicesDataItems servicesDataItems = servicesDataItemsList.get(position);
        holder.linLayout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                row_index = position;
                notifyDataSetChanged();
            }
        });

        if (row_index == position) {
            Toast.makeText(mContext, "Pos: " + position + " , GetAdapterPos: " + holder.getAdapterPosition(), Toast.LENGTH_SHORT).show();

            //                Toast.makeText(mContext, "SSSS" + MainActivity.servicesNumber.getText().toString(), Toast.LENGTH_SHORT).show();
            int servicesNumber = Integer.parseInt(MainActivity.servicesNumber.getText().toString());


//                Toast.makeText(mContext, "is instance of BitmapDrawable= " + holder.constraintLayout.isFocusable() + "    ======     ", Toast.LENGTH_SHORT).show();
            if (holder.linLayout.isSelected()){
                Toast.makeText(mContext, "IsSelected ", Toast.LENGTH_SHORT).show();
            }
            if (holder.linLayout.isFocusable()) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
                    holder.constraintLayout.setBackground(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services));
                    holder.linLayout.setFocusable(false);
                    MainActivity.servicesNumber.setText(String.valueOf(--servicesNumber));
                    removeSelectedService(position);

                } else {
                    holder.constraintLayout.setBackgroundDrawable(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services));
                    holder.linLayout.setFocusable(false);
                    MainActivity.servicesNumber.setText(String.valueOf(--servicesNumber));
                    removeSelectedService(position);
                }
            } else {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
                    holder.constraintLayout.setBackground(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services_selected));
                    holder.linLayout.setFocusable(true);
                    MainActivity.servicesNumber.setText(String.valueOf(++servicesNumber));
                    selectedServices.add(position);
                } else {
                    holder.constraintLayout.setBackgroundDrawable(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services_selected));
                    holder.linLayout.setFocusable(true);
                    MainActivity.servicesNumber.setText(String.valueOf(++servicesNumber));
                    selectedServices.add(position);
                }
            }

            if (servicesNumber > 0) {
                Drawable selectLocation = ContextCompat.getDrawable(mContext, R.drawable.rbtn_location_active);
                ColorStateList colorStateList = ContextCompat.getColorStateList(mContext, R.color.rbtn_text_color_button);
                new EnableLocationSelectButton(selectLocation, colorStateList).invoke();
            }

            if (servicesNumber == 0) {
                Drawable selectLocation = ContextCompat.getDrawable(mContext, R.drawable.rbtn_location_dimmed);
                ColorStateList colorStateList = ContextCompat.getColorStateList(mContext, R.color.ElahiyeGray);
                new DisableLocationSelectButton(selectLocation, colorStateList).invoke();
            }

            boolean isPrescriptionImageVisible = false;
            boolean isGenderImageVisible = false;

            for (int selected : selectedServices) {
                if (servicesDataItemsList.get(selected).has_prescriptions_image()) {
                    isPrescriptionImageVisible = true;
                    if (MainActivity.prescriptionImageHolder.getVisibility() == View.INVISIBLE) {
                        MainActivity.gender_prescription_selection.setVisibility(View.VISIBLE);
                        MainActivity.gender_prescription_separator.setVisibility(View.VISIBLE);
                        MainActivity.doctorPrescription.setVisibility(View.VISIBLE);
                    }
                }

                if (servicesDataItemsList.get(selected).hasGender()) {
                    isGenderImageVisible = true;
                    MainActivity.gender_prescription_selection.setVisibility(View.VISIBLE);
                    MainActivity.gender_prescription_separator.setVisibility(View.VISIBLE);
                    MainActivity.genderSelection.setVisibility(View.VISIBLE);
                }
            }

            if (!isPrescriptionImageVisible) {
                MainActivity.doctorPrescription.setVisibility(View.INVISIBLE);
                MainActivity.prescriptionImageHolder.setVisibility(View.INVISIBLE);
            }

            if (!isGenderImageVisible) {
                MainActivity.genderSelection.setVisibility(View.INVISIBLE);
            }

            if (!isPrescriptionImageVisible && !isGenderImageVisible) {

                MainActivity.gender_prescription_selection.setVisibility(View.INVISIBLE);
                MainActivity.gender_prescription_separator.setVisibility(View.INVISIBLE);
            }
        }
        holder.service_name.setText(servicesDataItems.getServices_name());
        holder.service_price.setText(servicesDataItems.getServices_price());
    }

    private void removeSelectedService(int position) {
        int index = 0;
        for (int selected : selectedServices) {
            if (selected == position) {
                selectedServices.remove(index);
                return;
            }
            index++;
        }
    }

    // total number of rows
    @Override
    public int getItemCount() {
        return servicesDataItemsList.size();
    }

    // stores and recycles views as they are scrolled off screen
    public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
        //        ImageView myImageView;
        TextView service_name;
        TextView service_price;
        ConstraintLayout constraintLayout;
        LinearLayout linLayout;
        ImageView serviceGender;
        ImageView servicePrescription;

        ViewHolder(View itemView) {
            super(itemView);
//            myImageView = itemView.findViewById(R.id.service_image);
            service_name = itemView.findViewById(R.id.service_name);
            service_price = itemView.findViewById(R.id.service_price);
            constraintLayout = itemView.findViewById(R.id.services_place_holder);
            linLayout = itemView.findViewById(R.id.services_container);
            serviceGender = itemView.findViewById(R.id.services_gender_image);
            servicePrescription = itemView.findViewById(R.id.services_prescription_image);
            itemView.setOnClickListener(this);
        }
}

请告诉我如何正确管理每个项目的 OnClick 侦听器?我还阅读了所有其他主题,但没有一个对我有帮助。

【问题讨论】:

  • 请清理您的代码。代码很难阅读。请删除被注释掉的代码,因此不需要。
  • 好吧,现在就做吧
  • 我删除了所有不必要的代码!
  • 不想太挑剔,这段代码封装得不好。你正在用MainActivity.prescriptionImageHolder 之类的东西打电话给你的MainActivity。这不是一个好的模型。您直接将ServicesAdapter 绑定到MainActivity!这意味着ServicesAdapter 不可重复使用。

标签: java android onclicklistener android-recyclerview


【解决方案1】:

我已经查看了您的代码,我想我已经找到了问题所在。您有一个条件来检查row_index 是否等于position。但是,我没有看到此声明的任何其他部分。

当您的数据集很小时,它可以工作,因为您不必滚动它。但是,当您的数据集很大并且您必须滚动它时,它应该具有一些随机行为,因为您没有指定语句的 else 部分。每次滚动时视图都会被回收,当您实现 onBindViewHolder 函数时,您需要准确地告诉每一行中要加载的内容。

因此,即使不满足条件(即其他部分),我也建议您对持有人物品进行分配。

if (row_index == position) {
    // Your current implementation
} else {
    // Set the views accordingly when the above condition is not met.
}

更新

如果您想在 RecyclerView 中实现多项选择,那么您可能需要保留一个单独的数组来跟踪所选项目,然后根据您保存在您的大批。例如,让我们考虑一个数组来跟踪点击。

public int[] clickTrack = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

现在,当您单击一个项目时,只需将单击的轨迹记录到您的数组中。

@override 
public void onClick(View v) {
    if(clickTrack[position] == 0) clickTrack[position] = 1;
    else clickTrack[position] = 0;

    notifyDataSetChanged();
}

现在,当您已经单击了一些项目时,数组将看起来像这样。

{0, 1, 0, 1, 1, 0, 1, 0, 1, 0}

在您的onBindViewHolder 中,只需根据您在保存点击轨迹的数组中找到的值展开项目。

if(clickTrack[position] == 1) someView.expand();
else someView.collapse();

这是一个示例实现。我希望你能明白。这是一个实现相同功能的nice answer。你也可以考虑看看那里。

【讨论】:

  • 非常感谢您帮助我,我现在就尝试并告诉您结果!
  • 不客气。如果有帮助,请告诉我。
  • 我认为您的回答可能是正确的,我尝试了您的解决方案但没有成功,我不知道为什么它的行为不受控制???一切都是随机变化的!!!
  • 你的onBindViewHolder 里的逻辑太多了。所以很难调试。但是,我认为问题在于您的 else 部分在其他地方也丢失了,我无法找到。请检查您的onBindViewHolder 函数是否涵盖所有案例。
  • 我添加了 else 子句,但我不知道为什么它不再起作用了!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-03-06
  • 2020-03-21
  • 1970-01-01
  • 1970-01-01
  • 2019-10-14
相关资源
最近更新 更多