我想用xml在矩形上繪製文本。我想要文字居中在矩形上。出於某種原因,矩形和文本都位於網格佈局中。以矩形爲中心的textview
<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>
無論我是否將矩形設置爲文本視圖的bg或作爲單獨視圖,我都無法完成此操作。我錯在哪裏?
謝謝您的回答ramaral。 –