我在HorizontalListView
内实施了ViewPager
。 ViewPager
工作正常,但ViewPager
(HorizontalListView
)的孩子不会滚动。相反,整个页面滚动到下一个。当父母和孩子都有触摸事件时如何解决触摸事件?
在我的情况下ViewPager
是父视图,它会使pager.xml
pager.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.geekyouup.paug.awesomepager.HorizontialListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="135dip"
android:background="#ffffff"
android:gravity="left" />
<TextView
android:id="@+id/t1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sagfjsdkfksjdfhkjs" />
<TextView
android:id="@+id/t2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="he ha ha ha" />
</LinearLayout>