我有这样的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
<ImageView
android:layout_centerInParent="true"
android:id="@+id/touchImg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/robo"
android:scaleType="center" />
</RelativeLayout>
当我长时间点击 ImageView 时,它开始坚持手指。如果它通过X i切换到 ViewPager 的位置有很大的位移,就像这样:
mViewPager.setCurrentItem(mViewPager.getCurrentItem()+1,true);
问题: 在切换 ViewPager 时, IvmageView 的坐标会重置一会儿(默认),然后返回到手指下的位置(我们仍在长按 ImageView < / strong>)