weimingfei
4 小时以前 ce46dd9e401d7f2936db08bcea201bbd1da8e0a2
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:app="http://schemas.android.com/apk/res-auto">
    <data>
        <variable
            name="data"
            type="com.doumee.keyCabinet.bean.FingerPrintVo" />
    </data>
    <androidx.constraintlayout.widget.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/cl_root"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="24dp"
        >
 
        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/sim"
            android:layout_width="75dp"
            android:layout_height="75dp"
            app:roundAsCircle="true"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            style="@style/sim_head"
            />
 
        <TextView
            android:id="@+id/tv_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{data.memberName}"
            android:textColor="#ff333333"
            android:textSize="24sp"
            android:textStyle="bold"
            app:layout_constraintTop_toTopOf="@+id/sim"
            app:layout_constraintStart_toEndOf="@+id/sim"
            android:layout_marginLeft="22dp"/>
 
        <TextView
            android:id="@+id/tv_gw"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textColor="#ff279baa"
            android:textSize="21sp"
            app:layout_constraintBottom_toBottomOf="@+id/sim"
            app:layout_constraintStart_toStartOf="@+id/tv_name"/>
 
        <TextView
            android:id="@+id/tv_num"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="已采集指纹:0"
            android:textColor="#ff666666"
            android:textSize="21sp"
            app:layout_constraintTop_toTopOf="@+id/sim"
            app:layout_constraintBottom_toBottomOf="@+id/sim"
            app:layout_constraintEnd_toStartOf="@+id/img1"
            android:layout_marginRight="16dp"/>
 
        <ImageView
            android:id="@+id/img1"
            android:layout_width="15dp"
            android:layout_height="27dp"
            android:src="@mipmap/design_ic_ar"
            app:layout_constraintTop_toTopOf="@+id/sim"
            app:layout_constraintBottom_toBottomOf="@+id/sim"
            app:layout_constraintEnd_toEndOf="parent"/>
 
        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/line"
            app:layout_constraintTop_toBottomOf="@+id/sim"
            android:layout_marginTop="24dp"/>
    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>