43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:background="@color/bg_dinamico"
|
|
android:padding="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="120dp"
|
|
android:layout_height="120dp"
|
|
android:src="@drawable/ic_carteira_tech"
|
|
android:layout_marginBottom="24dp"/>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Finzora"
|
|
android:textColor="@color/texto_principal"
|
|
android:textSize="32sp"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="O teu gestor financeiro seguro."
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="16sp"
|
|
android:layout_marginBottom="48dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/btnDesbloquearApp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:text="Desbloquear"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold"
|
|
android:textColor="#1A202C"
|
|
android:backgroundTint="#00E676"
|
|
app:cornerRadius="12dp"/>
|
|
</LinearLayout> |