AIRA-android/app/src/main/res/layout/dialog_fingerprints.xml

39 lines
1.3 KiB
XML

<?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="match_parent"
android:paddingHorizontal="20dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fingerprints_instructions"
style="@style/Label"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/local_fingerprint"
style="@style/Label"
android:textStyle="bold"/>
<TextView
android:id="@+id/text_local_fingerprint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/peer_fingerprint"
style="@style/Label"
android:textStyle="bold"/>
<TextView
android:id="@+id/text_peer_fingerprint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"/>
</LinearLayout>