我想使用 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>
无论我将矩形设置为文本视图的背景还是单独的视图,我都无法完成。我哪里错了?