| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:background="@color/white_f8f8f8"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="153dp"
- android:background="@color/white"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@mipmap/shimingrenzheng_220816"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_marginTop="20dp"
- android:text="您已通过实名认证"
- android:textColor="@color/black_333333"
- android:textSize="18sp"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:background="@color/white"
- android:orientation="vertical"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="16sp"
- android:textColor="@color/black_333333"
- android:text="真实姓名:"
- />
- <TextView
- android:id="@+id/tv_user_name"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:gravity="right"
- android:layout_height="wrap_content"
- android:textColor="@color/gray_999999"
- android:text="琳琳"/>
- <TextView
- android:layout_width="43dp"
- android:layout_marginLeft="10dp"
- android:layout_height="19dp"
- android:background="@drawable/shape_line_fe0032_2dp"
- android:textColor="@color/red_fe0032"
- android:textSize="11sp"
- android:gravity="center"
- android:text="已认证"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/gray_e5e5e5"
- android:layout_marginTop="16dp"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:layout_marginTop="16dp"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="16sp"
- android:textColor="@color/black_333333"
- android:text="证件号码:"
- />
- <TextView
- android:id="@+id/tv_user_card"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:gravity="right"
- android:layout_height="wrap_content"
- android:textColor="@color/gray_999999"
- android:text="琳琳"/>
- </LinearLayout>
- <ImageView
- android:id="@+id/iv_card_positive"
- android:layout_width="match_parent"
- android:layout_marginLeft="40dp"
- android:layout_marginTop="16dp"
- android:scaleType="fitXY"
- android:layout_marginRight="40dp"
- android:layout_height="139.5dp" />
- <ImageView
- android:id="@+id/iv_card_reverse"
- android:scaleType="fitXY"
- android:layout_width="match_parent"
- android:layout_marginLeft="40dp"
- android:layout_marginTop="16dp"
- android:layout_marginRight="40dp"
- android:layout_height="139.5dp" />
- </LinearLayout>
- </LinearLayout>
|