0

私はレイアウトを持っています:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <GridView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/gridview" android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/textView2"
        android:layout_below="@+id/textView1" android:columnWidth="90dp"
        android:gravity="center" android:horizontalSpacing="10dp"
        android:numColumns="3" android:stretchMode="spacingWidth"
        android:verticalSpacing="10dp" />

    <TextView android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="15dp" android:text="Level 1"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="20dp" android:text=""
        android:textAppearance="?android:attr/textAppearanceLarge" />


</RelativeLayout>

したがって、ユーザーが右にスクロールしたときに同じレイアウトが必要です。異なる画像を持つグリッドビューとテキストビューが再び存在します。しかし、例を見ても達成できませんでした。Linear Layout に変換しようとしましたが、やはり scroolview を作成できませんでした。

つまり、次のようなレイアウトがあります。

レイアウト

ユーザーが右にスクロールすると、さまざまな画像を保持する別のグリッドビューが必要になります。ユーザーがスクロールしても何も変化せず、画像だけが変化します。何か助けはありますか?

4

1 に答える 1

0

私が理解しているように、GridView で画像を水平方向にスクロールできるようにしたいと考えています。ScrollView では実現できません。TwoWayGridLayoutを使用してみてください。または、 ViewPager と Fragmentsを使用できます。目的により便利な方を選択してください。

于 2013-03-11T18:42:46.253 に答える