crystal-wallet-android/app/src/main/res/layout/fragment_none_security.xml

28 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:text="It is recommended to use some kind of security."
android:textAlignment="center"
android:layout_centerInParent="true"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/btnOK"
style="@style/Widget.Crystal.Button"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:layout_below="@+id/txtFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ok"/>
</RelativeLayout>