2

私はこのGridViewを持っています:

<GridView     android:id="@+id/gridEtebarSanji"
              android:layout_width="match_parent"
              android:layout_height="480dp"
              android:background="@color/black"
              android:gravity="center"
              android:horizontalSpacing="2dp"
              android:isScrollContainer="false"
              android:numColumns="3"
              android:stretchMode="columnWidth"
              android:verticalSpacing="2dp" >

  </GridView>

そして、このレイアウトはその中のアイテムに使用されます:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal" >

    <TextView
        android:id="@+id/tvText"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white"
        android:singleLine="false"
        android:text="TextView"
        android:textSize="16dip" />

</LinearLayout>

そして結果:

ここに画像の説明を入力

単一行のセルを複数行のセルと同じ長さに引き延ばしたい。どうやってやるの?

textViewsを設定android:layout_height="match_parent"しましたが、影響はありません。

4

1 に答える 1

2

2 行を表示するように TextView を設定します。

<TextView
        android:id="@+id/tvText"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white"
        android:lines="2"
        android:text="TextView"
        android:textSize="16dip" />
于 2012-08-07T09:45:02.593 に答える