我如何通过GestureOverlayView传递click事件

时间:2019-05-12 08:05:10

标签: android android-layout

所以基本上现在发生的事情是GestureOverlayView接受所有触摸事件。没关系,但是我想将点击和长按传递给recyclerView。我真的不知道如何解决这个问题。

预先感谢

这是我的xml

<androidx.constraintlayout.widget.ConstraintLayout

        xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:android="http://schemas.android.com/apk/res/android">

    <androidx.recyclerview.widget.RecyclerView

            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:id="@+id/recyclerView"
            app:layout_constraintBottom_toBottomOf="parent"/>


    <android.gesture.GestureOverlayView
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:id="@+id/gOverlay"
            android:layout_gravity="center_horizontal"
            android:gestureColor="#F8000000"
            android:uncertainGestureColor="#F8000000"
            android:gestureStrokeType="multiple" app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"/>




</androidx.constraintlayout.widget.ConstraintLayout>

0 个答案:

没有答案