画像ギャラリーのように、ImageViewの画像間で変更するものを実装しようとしています。
ImageViewを表示するためのこのXMLがあります
<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がこれに問題があるかどうかはわかりません。誰かがこれを手伝ってくれますか?このアクティビティで最も頻繁に使用される方法はどれですか?
ありがとう。