我正在尝试实现一些东西来改变 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 的原因。现在我遇到了问题,我会尝试用某种手势实现一些改变为其他图像的东西,但我不知道 HorizontalScrollView 是否对此有问题。有人可以帮我吗?哪种方法最常用于此活动?
谢谢。