1

textView私は与えられた指示を含む断片を持っていgridViewます. textViewで上にスクロールしたかったのgridViewです。言い換えると、がスクロールしているtextViewときに画面から消えます。gridView

これを達成する方法についての私の考えはgridView、レイアウト全体をスクロール可能にする固定の高さを与えることtextViewです。ただし、これを達成できないまで。これを行う方法はありますか?

スクロールなしのレイアウト:

レイアウトのスクロールなし

スクロール時:

スクロール時:

ヘルプ/アドバイスをいただければ幸いです。

私のレイアウトXML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/LightGrey"
    android:gravity="center_horizontal|center_vertical"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/chooseLine"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="18dp"
        android:text="@string/chooseLine"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <GridView
        android:id="@+id/gridLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:columnWidth="130dp"
        android:fitsSystemWindows="false"
        android:gravity="center"
        android:horizontalSpacing="5dp"
        android:numColumns="auto_fit"
        android:paddingTop="0dp"
        android:stretchMode="columnWidth"
        android:verticalSpacing="25dp" />

</LinearLayout>
4

2 に答える 2

1

LinearLayout 全体を ScrollView に入れ ( Android で ScrollView を使用するには? )、GridView の場合は android:layout_height="wrap_content" を設定します。

于 2013-04-16T22:31:05.027 に答える