kimi
2021-02-18 0ac056bb5b4c567293482286c80a1b83a467cd33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    <LinearLayout
            android:layout_margin="@dimen/margin_common"
            android:orientation="vertical"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="wrap_content">
 
        <TextView
                android:id="@+id/tv_field"
                android:layout_marginRight="21dp"
                android:text="@string/certificate_real_name"
                android:textSize="@dimen/text_size_15"
                android:textColor="@color/black_idCard"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
 
        <EditText
                android:enabled="false"
                android:layout_marginTop="@dimen/text_size_12"
                android:background="@null"
                android:id="@+id/tv_val"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
    </LinearLayout>
    <ImageView
            android:layout_marginRight="@dimen/margin_common"
            android:layout_gravity="center_vertical"
            android:id="@+id/iv_edit"
            android:src="@mipmap/ic_fix"
            android:layout_width="15dp"
            android:layout_height="15dp"/>
    </LinearLayout>
    <include layout="@layout/divider_h" />
</LinearLayout>