| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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="wrap_content"
- >
- <LinearLayout
- android:background="@drawable/login_technological_process"
- android:id="@+id/line_true"
- android:layout_marginTop="5dp"
- android:layout_marginLeft="30dp"
- android:layout_marginRight="30dp"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dp">
- <TextView
- android:id="@+id/macode_Tv"
- android:gravity="right"
- android:text=""
- android:layout_width="0dp"
- android:layout_weight="5"
- android:textSize="@dimen/textsize_20"
- android:layout_height="wrap_content"
- />
- <TextView
- android:id="@+id/remark_Tv"
- android:text=""
- android:gravity="left"
- android:layout_width="0dp"
- android:layout_weight="6"
- android:textSize="@dimen/textsize_20"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
- </RelativeLayout>
|