xmlを使用して長方形にテキストを描画したい。テキストを長方形の中央に配置したい。理由により、長方形とテキストの両方がグリッドレイアウト内にあります。
<GridLayout
android:id="@+id/daily"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:columnCount="3"
android:orientation="horizontal"
android:rowCount="1" >
<TextView android:background="@drawable/green_rect_small" />
<Space android:layout_width="3dp" />
<RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/green_rect_large" />
<TextView
android:id="@+id/daily_readings"
android:background="@drawable/green_rect_large"
android:text="@string/daily_readings"
android:textColor="@color/white"
android:textSize="40sp" />
</RelativeLayout>
</GridLayout>
長方形をテキストビューの背景として設定するか、別のビューとして設定するかはわかりません。どこが間違っていますか?