我有以下自定义水平滚动视图。问题在于它仅从右向左完全滚动,而不是从左向右滚动,即当图像设置到其原始位置在一侧滚动时。我想平等地向两个方向移动。
<com.custom
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/outerScroll1"
android:layout_width="1500dip"
android:layout_height="200dip"
android:layout_alignParentLeft="true"
android:fitsSystemWindows="true"
android:scrollX="300dip"
>
<RelativeLayout
android:layout_width="1500dip"
android:layout_height="200dip"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="500dip"
android:layout_height="200dip"
android:scaleType="fitXY"
android:src="@drawable/pic"
/>
</RelativeLayout>
</com.custom>
我尝试滑动抽屉但没有工作。即使我在自定义视图中使用android:layout_centerHorizontal="true"
,但这些更改了视图的位置,即滑动它。