在Android视图中重叠组件时,我遇到了侦听器的问题。 在我的情况下,我在ListView上显示一个布局,这是我的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#dddddd"
android:id="@+id/layout_chrono">
<Chronometer
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:textColor="@color/orange"
android:textStyle="bold"
android:id="@+id/chrono" />
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listview_training"
android:layout_below="@id/layout_chrono">
</ListView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@id/layout_chrono"
android:id="@+id/music_layout"
android:visibility="invisible"
android:background="#444444">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:text="Titolo della canzone - Autore" />
<ImageView
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_alignParentBottom="true"
android:layout_marginLeft="40dp"
android:layout_marginBottom="15dp"
android:src="@drawable/prev_music" />
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="15dp"
android:src="@drawable/start_music" />
<ImageView
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginRight="40dp"
android:layout_marginBottom="15dp"
android:src="@drawable/next_music" />
</RelativeLayout>
</RelativeLayout>
我在该布局中的组件上附加了一个OnClickListener,但是当我单击它时,将调用两个侦听器(后台listView和布局中的组件之一)。 有没有办法只调用前景中的一个组件? 我知道在显示前景布局时我可以从后台listView中分离监听器,但我更喜欢更优雅的方式。
答案 0 :(得分:0)
一种方法是创建自己的View,在您的情况下可能会扩展LinearLayout。然后,此自定义视图将覆盖onTouchEvent,它将MotionEvent作为参数。
此方法返回的内容取决于您设置的条件是否消耗了事件(例如:您是否要通过点击,滑动等)。如果事件没有被消耗,那么它将被传递。