我正在尝试在ImageView中实现图像之间的更改,就像图库一样。
我有这个XML来显示ImageView
<LinearLayout 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:orientation="vertical">
<HorizontalScrollView
android:id="@+id/hsv_ScrollImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="none">
<ImageView
android:id="@+id/id_imgFinal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</HorizontalScrollView>
</LinearLayout>
我的应用程序显示处于横向模式的图像,这就是我使用HorizontalScrollView的原因。现在我遇到了问题,我会尝试使用某种手势实现某些内容以更改为其他Image,但我不知道HorizontalScrollView是否存在问题。有人可以帮我这个吗?哪种方法最常用于此活动?
感谢。
答案 0 :(得分:0)
使用Gallery UI小部件怎么样?这正是这样的场景。 Here's它的教程和the reference。
答案 1 :(得分:0)
Here有一个很好的ViewPager教程。您甚至可以与Gesture-ImageView集成,为图库添加缩放功能。
啊!不要忘记将this patch添加到Gesture-ImageView以更好地集成。