我有一个没有片段(只是视图)的ViewPager。每个页面都包含一个元素列表。通过滑动移动,我可以访问ViewPager的下一页,通过单击事件,我可以显示有关所选元素的信息。
为了区分点击和滑动动作,我在列表的每个元素上实现了一个TouchListener:
public boolean onTouch(View v, MotionEvent event) {
int move = event.getAction();
switch(move){
case MotionEvent.ACTION_DOWN:
lastX = event.getX();
lastY = event.getY();
//mViewPager.dispatchTouchEvent(event);
return true;
case MotionEvent.ACTION_UP:
float diffX = Math.abs(lastX-event.getX());
float diffY = Math.abs(lastY-event.getY());
if(diffX < incertitude && diffY < incertitude){
Bundle b = new Bundle();
b.putString(HOME_TITLE,n.getTitle());
b.putString(HOME_DESCR,n.getArticle());
FragmentManager fm = me().getFragmentManager();
HomeDialogFragment mDialogFragment = new HomeDialogFragment();
mDialogFragment.setArguments(b);
mDialogFragment.show(fm,"home_dialog_fragment");
return true;
}
default:
return false;
}
}
这个解决方案不能很好地完成,我不是没有原因。 列表的每个元素基本上由几个TextView组成。点击操作效果很好,但我在滑动移动时遇到了一些问题。
当我尝试在元素上滑动时,它可以工作(我可以访问下一页)。另一方面,当我在其中一个TextView上滑动时,它根本不起作用:
(感谢Stack不允许我发布有用的图片......) http://www.hostingpics.net/viewer.php?id=829040170.png
当我从“橙色背景”区域(其中一个textView)启动滑动移动时,没有任何反应。否则,没关系。我不明白为什么......
列表元素的XML文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_screen"
android:layout_width="match_parent"
android:layout_height="?android:listPreferredItemHeightLarge"
android:divider="?android:dividerVertical"
android:dividerPadding="8dp"
android:orientation="horizontal"
android:showDividers="middle">
<TextView
android:id="@+id/home_title"
style="?android:textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:gravity="center"
android:layout_marginLeft="100dp"
android:textColor="@color/news_title"
android:layout_alignParentRight="false"
android:layout_alignParentTop="false"
android:textStyle="bold"
android:textSize="30dp"
android:layout_marginTop="10dp"
android:singleLine="true"
android:ellipsize="end"
android:layout_marginRight="30dp"
android:background="@android:color/holo_orange_light"
android:text="Titre principal"/>
<TextView
android:id="@+id/home_description"
style="?android:textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:gravity="center"
android:layout_marginLeft="100dp"
android:textColor="@color/news_subtitle"
android:layout_alignParentRight="false"
android:layout_alignParentBottom="false"
android:layout_marginTop="40dp"
android:singleLine="true"
android:ellipsize="end"
android:layout_marginRight="30dp"
android:text="Description sommaire"
android:background="@android:color/holo_orange_light"/>
...
</RelativeLayout>
感谢您的帮助!