0

画像ギャラリーのように、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>

私のアプリは横向きモードの画像を表示します。これが、Horizo​​ntalScrollViewを使用している理由です。今、私は問題を抱えています。ある種のジェスチャーで他の画像に変更するために何かを実装しようとしますが、Horizo​​ntalScrollViewがこれに問題があるかどうかはわかりません。誰かがこれを手伝ってくれますか?このアクティビティで最も頻繁に使用される方法はどれですか?

ありがとう。

4

2 に答える 2

0

ギャラリーUIウィジェットを使用してみませんか?これはまさにこのようなシナリオ向けです。これがそのチュートリアルとリファレンスです。

于 2012-11-19T17:59:27.650 に答える
0

ここに、ViewPagerを使用した優れたチュートリアルがあります。Gesture-ImageViewと統合して、ギャラリーにズーム機能を追加することもできます。

ああ!より良い統合のために、このパッチをGesture-ImageViewに追加することを忘れないでください。

于 2012-11-19T19:46:16.190 に答える