я строю простой просмотрщик с пользовательским макетом (текстовое представление и переключатель) и пользовательским адаптером.
Моя проблема в том, что я не могу обработать событие щелчка для переключателя (который заставляет его переключать свое состояние), я создал сенсорный приемник для RecyclerView
и он срабатывает каждый раз, когда я нажимаю на Switch
.
После многих испытаний также срабатывает прослушиватель касания переключателя, но я хочу отключить событие касания для recyclerView при нажатии на переключатель.
Вот мой код компоновки:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="60.0dip"
android:layout_weight="1.0"
android:orientation="horizontal"
android:paddingLeft="16dp">
<TextView
android:id="@+id/category_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="false"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:text="Category Name"
android:textAppearance="?android:textAppearanceLarge" />
<android.support.v7.widget.SwitchCompat
android:id="@+id/category_switch"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:checked="true"
android:clickable="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:paddingRight="16dp" />
</RelativeLayout>
это мой код адаптера:
public CategoryViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View row = layoutInflater.inflate(R.layout.single_row_category, parent, false);
CategoryViewHolder holder = new CategoryViewHolder(row);
return holder;
}
public void onBindViewHolder(CategoryViewHolder holder, final int position) {
AlarmCategory thisCat = categories.get(position);
holder.catName.setText(thisCat.getCategoryName());
holder.catStatus.setChecked(thisCat.isOn());
holder.catStatus.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
Log.d("fpp", view.getClass().getName() + " is clicked");
return true;
}
});
}
public class CategoryViewHolder extends RecyclerView.ViewHolder implements View.OnCreateContextMenuListener {
public TextView catName;
public SwitchCompat catStatus;
public CategoryViewHolder(View itemView) {
super(itemView);
itemView.setOnCreateContextMenuListener(this);
catName = (TextView) itemView.findViewById(R.id.category_name);
catStatus = (SwitchCompat) itemView.findViewById(R.id.category_switch);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View view, ContextMenu.ContextMenuInfo contextMenuInfo) {
menu.add(0, 1001, 0, "Edit");//groupId, itemId, order, title
menu.add(0, 1002, 1, "Delete");
}
}
А вот и мой обработчик сенсорного обработчикаView:
class RecyclerTouchListener implements RecyclerView.OnItemTouchListener {
private GestureDetector gestureDetector;
private ClickListener clickListener;
public RecyclerTouchListener(Context context, final RecyclerView recyclerView, final ClickListener clickListener) {
this.clickListener = clickListener;
gestureDetector = new GestureDetector(context, new GestureDetector.SimpleOnGestureListener() {
@Override
public boolean onSingleTapUp(MotionEvent e) {
return true;
}
@Override
public void onLongPress(MotionEvent e) {
View child = recyclerView.findChildViewUnder(e.getX(), e.getY());
if (child != null && clickListener != null) {
clickListener.onLongClick(child, recyclerView.getChildPosition(child));
}
}
});
}
@Override
public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
View child = recyclerView.findChildViewUnder(e.getX(), e.getY());
if (child != null && clickListener != null && gestureDetector.onTouchEvent(e)) {
clickListener.onClick(child, rv.getChildPosition(child));
Log.d("fpp", child.getClass().getName() + " is clicked");
return false;
}
return false;
}
@Override
public void onTouchEvent(RecyclerView rv, MotionEvent e) {
}
@Override
public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
}
}
и в методе onCreate
я вызываю его через:
recyclerView.addOnItemTouchListener(new RecyclerTouchListener(this, recyclerView, new ClickListener() {
@Override
public void onClick(View view, int position) {
Intent i = new Intent(CategoriesList.this, AlarmList.class);
i.putExtra("catID", categories.get(position).getCategoryID());
startActivity(i);
}
@Override
public void onLongClick(View view, int position) {
catPos = position;
}
}));
Любая помощь, пожалуйста, я уже пробовал много решений, но ничего не помогло извините.
Заранее спасибо.