53 lines
1.4 KiB
XML
53 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp"
|
|
android:gravity="center"
|
|
android:background="#FFDCDCDC">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="应用指纹校验"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/gray_900"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="12dp"/>
|
|
|
|
<ScrollView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:id="@+id/et_sign_fingerprint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:drawable/edit_text"
|
|
android:textSize="12sp"
|
|
android:gravity="top"
|
|
android:hint="签名获取中..."
|
|
android:singleLine="false"
|
|
android:scrollHorizontally="false"
|
|
android:scrollbars="vertical"
|
|
android:overScrollMode="always"
|
|
android:typeface="monospace"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"/>
|
|
|
|
</ScrollView>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_auth_result"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:textSize="11sp"
|
|
android:gravity="center"
|
|
android:textColor="@color/gray_900"/>
|
|
|
|
</LinearLayout>
|
|
|