123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?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="match_parent"
- android:background="@drawable/bg_yinying531">
- <LinearLayout
- android:id="@+id/linearLayout3"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:orientation="vertical">
- <LinearLayout
- android:id="@+id/ll_tvOne"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@color/bg_row"
- android:visibility="gone">
- <TextView
- android:id="@+id/tvOne"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_gravity="center_horizontal"
- android:clickable="true"
- android:gravity="center"
- android:text="请上传您的驾驶证图片"
- android:textColor="@color/hintColor"
- android:textSize="17sp" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_tvTwo"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@color/bg_row">
- <Button
- android:id="@+id/tvTwo"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_gravity="center_horizontal"
- android:background="@color/white"
- android:clickable="true"
- android:gravity="center"
- android:text="已购买"
- android:textColor="@color/actionsheet_green"
- android:textSize="17sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/Line" />
- <LinearLayout
- android:id="@+id/ll_tvThree"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@color/bg_row">
- <Button
- android:id="@+id/tvThree"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_gravity="center_horizontal"
- android:background="@color/white"
- android:clickable="true"
- android:gravity="center"
- android:text="未购买"
- android:textColor="@color/actionsheet_green"
- android:textSize="17sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/in_line" />
-
-
-
-
-
-
-
-
-
-
-
- <Button
- android:id="@+id/cancleButton"
- android:layout_width="fill_parent"
- android:layout_height="45dp"
- android:layout_gravity="center"
- android:layout_marginTop="4dp"
- android:background="@color/white"
- android:text="取 消"
- android:textSize="18sp"
- android:textColor="@color/actionsheet_green" />
- </LinearLayout>
- </RelativeLayout>
|