| 1234567891011121314151617181920 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:gravity="center"
- android:orientation="vertical">
- <Button
- android:id="@+id/bt_add"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@color/transparent"
- android:text="拨出单过账"
- android:textSize="@dimen/app_text_size_body_2" />
- </LinearLayout>
|