Mercury-IM/app/src/main/res/layout/fragment_ikey_backup_restor...

33 lines
1.1 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">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Backup restored successfully!\nThis is your Identity Key Fingerprint:"
android:gravity="center"
/>
<include layout="@layout/view_openpgp_4_fingerprint" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This key will help your contacts to decide which keys really belong to you."
android:gravity="center"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="end">
<Button
android:id="@+id/btn_done"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Done" />
</LinearLayout>
</LinearLayout>