Files
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

34 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fingerprint_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/fingerprint_icon"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_margin="16dp"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.24"
app:srcCompat="@drawable/ic_lock_login_with_fingerprint"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/fingerprint_text"
style="@style/Body2.Medium.White"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textAlignment="gravity"
android:minLines="2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/fingerprint_icon" />
</androidx.constraintlayout.widget.ConstraintLayout>