a busy cat http://oi60.tinypic.com/34j9jz6.jpg
(绿色边框是智能手机)
我有一个水平滚动视图,里面有5张图片。我现在想要一个捕捉无限水平滚动视图。我想向左或向右移动。始终在开头或结尾填充相同的图像(使用捕捉)。
代码结构如下所示:
<HorizontalScrollView
android:id="@+id/hs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fadingEdge="none"
android:scrollbars="none">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image1" />
//...
</LinearLayout>
我尝试了很多变化而没有成功。
或者横向滚动视图是不好的选择?