0

我正在尝试实现一些东西来改变 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>

我的应用程序显示处于横向模式的图像,这就是我使用 Horizo​​ntalScrollView 的原因。现在我遇到了问题,我会尝试用某种手势实现一些改变为其他图像的东西,但我不知道 Horizo​​ntalScrollView 是否对此有问题。有人可以帮我吗?哪种方法最常用于此活动?

谢谢。

4

2 回答 2

0

这里有一个很好的 ViewPager 教程。您甚至可以与Gesture-ImageView集成以向图库添加缩放功能。

啊! 不要忘记将此补丁添加到 Gesture-ImageView 以更好地集成。

于 2012-11-19T19:46:16.190 回答
0

使用 Gallery UI 小部件怎么样?正是针对这样的场景。这是它的教程和参考

于 2012-11-19T17:59:27.650 回答