有什么方法可以根据图像视图的高度和宽度来限制它的触感。
答案 0 :(得分:0)
您可以通过在要为其设置触摸事件的特定区域上放置空白视图来实现此目的。
例如:如果要在单个Imageview中放置2个不同的触摸事件,一个在右边,另一个在左边,请使用此代码块:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/left_side_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/transparent"
app:layout_constraintBottom_toBottomOf="@+id/image_view"
app:layout_constraintEnd_toStartOf="@id/right_side_view"
app:layout_constraintStart_toStartOf="@+id/image_view"
app:layout_constraintTop_toTopOf="@+id/image_view"/>
<View
android:id="@+id/right_side_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/transparent"
app:layout_constraintBottom_toBottomOf="@+id/image_view"
app:layout_constraintEnd_toEndOf="@+id/image_view"
app:layout_constraintStart_toEndOf="@id/left_side_view"
app:layout_constraintTop_toTopOf="@+id/image_view"/>
</androidx.constraintlayout.widget.ConstraintLayout>
然后只需为每个视图设置触摸事件。