19 lines
634 B
XML
19 lines
634 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="#ccDEDEDE"
|
|
android:padding="3dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp"
|
|
android:layout_centerInParent="true"
|
|
android:text="当前订单"
|
|
android:textSize="20sp"
|
|
android:textColor="#8B4513"
|
|
android:typeface="monospace"/>
|
|
|
|
</RelativeLayout> |