| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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="match_parent"
- android:background="@color/white"
- android:orientation="vertical" >
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="业务编码:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:text=""
- android:textColor="@color/black" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="业务名称:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_bussion"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:text=""
- android:textColor="@color/black" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="业务全名:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_code"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:text=""
- android:textColor="@color/black" />
- </RelativeLayout>
- <View
- android:layout_marginTop="10dp"
- android:layout_height="1dp"
- android:layout_width="match_parent"
- android:background="@color/lightgray"/>
- </LinearLayout>
|