我在其中创建了一个包含四个项目的LinearLayout。当用户的手指滑动时,我想更改内部项目的背景。 我该如何实现onTouchEvent?
例如,当用户触摸邮件线性布局并在项目上移动手指时,项目背景已更改...
<LinearLayout
android:id="@+id/letters_holder"
android:layout_width="match_parent"
android:layout_height="120dp"
android:orientation="horizontal"
android:weightSum="2">
<FrameLayout
android:id="@+id/first_letter"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:layout_margin="2dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="A"
android:textSize="50sp"
android:textColor="#ffffff"/>
</RelativeLayout>
</FrameLayout>
<FrameLayout
android:id="@+id/second_letter"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:layout_margin="2dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="B"
android:textSize="50sp"
android:textColor="#ffffff"/>
</RelativeLayout>
</FrameLayout>
</LinearLayout>
感谢您的帮助...