<?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.dao.FingerPrintDo" />
|
</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"
|
>
|
<TextView
|
android:id="@+id/tv_pos"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text=""
|
android:textColor="#ff333333"
|
android:textSize="27sp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
android:layout_marginTop="22dp"
|
/>
|
|
<ImageView
|
android:id="@+id/img_close"
|
android:layout_width="60dp"
|
android:layout_height="60dp"
|
android:padding="15dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:src="@mipmap/ic_delete"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="@color/line"
|
app:layout_constraintTop_toBottomOf="@+id/tv_pos"
|
android:layout_marginTop="22dp"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</layout>
|