簡體   English   中英

RecyclerViewAdapter上的SwitchCompat

[英]SwitchCompat on RecyclerViewAdapter

我在RecyclerView適配器中僅使用一個SwitchCompat 我需要單擊項目在RecyclerView上的位置,當我使用TextView而不是SwitchCompat時,它的工作正常。 但是SwitchCompat沒有響應,也沒有返回位置。

誰能幫我嗎? 這是適配器文件。

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

    private static final String TAG = "val" ;
    private Context mContext;
    private ArrayList<Channel_Model> channelsData;
    private Setting_Recycler_Adapter.ClickInterface click;

    public Setting_Recycler_Adapter(Context mContext, ArrayList<Channel_Model> data,Setting_Recycler_Adapter.ClickInterface clik) {
        this.mContext = mContext;
        this.channelsData = data;
        this.click = clik;
    }

    public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
        SwitchCompat mSwitchCompat;

        public ViewHolder(View itemView) {
            super(itemView);

            mSwitchCompat = (SwitchCompat) itemView.findViewById(R.id.setting_channel_switch);
            itemView.setOnClickListener(this);
        }

        @Override
        public void onClick(View v) {
            click.posClicked((short)getAdapterPosition());
        }
    }

    @Override
    public Setting_Recycler_Adapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(mContext).inflate(R.layout.setting_recycler, parent, false);
        return new Setting_Recycler_Adapter.ViewHolder(view);
    }

    @Override
    public void onBindViewHolder(final Setting_Recycler_Adapter.ViewHolder holder, int position) {
        holder.mSwitchCompat.setText(channelsData.get(position).getTitle());
        holder.mSwitchCompat.setChecked(channelsData.get(position).isChannel());
    }

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

    interface ClickInterface{void posClicked(short p);
}

還有RecyclerView布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layoutDirection="rtl"
    android:textDirection="rtl">

    <android.support.v7.widget.SwitchCompat
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/setting_channel_switch"
        android:paddingTop="15dp"
        android:paddingBottom="15dp"
        android:text="channel Name"
        android:textSize="17sp"/>
</LinearLayout>

您需要為SwitchCompat設置onSetCheckedChangeListeneronTouchListener 因此, ViewHolder類內部的實現應如下所示。

public class ViewHolder extends RecyclerView.ViewHolder {
    SwitchCompat mSwitchCompat;
    Boolean isTouched = false;

    public ViewHolder(View itemView) {
        super(itemView);
        mSwitchCompat = (SwitchCompat) itemView.findViewById(R.id.setting_channel_switch);

        mSwitchCompat.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View view, MotionEvent motionEvent) {
                isTouched = true;
                return false;
            }
        });

        mSwitchCompat.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isTouched) {
                    isTouched = false;

                    if (isChecked) {
                        click.posClicked((short)getAdapterPosition());
                    } else {
                        // Do something on un-checking the SwitchCompat
                    }
                }
            }
        });
    }
}

希望有幫助!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM