-
Notifications
You must be signed in to change notification settings - Fork 0
/
congrates_after_verification_pop_up.xml
38 lines (32 loc) · 1.27 KB
/
congrates_after_verification_pop_up.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/verified_gif"
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="160dp"
android:src="@drawable/account_verified"
android:contentDescription="@string/app_name" />
<TextView
android:textColor="@color/colorPrimary"
android:gravity="center_horizontal"
android:layout_margin="10dp"
android:textSize="@dimen/welcome_size"
android:text="@string/congratulation"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:gravity="center_horizontal"
android:layout_marginEnd="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginStart="20dp"
android:text="@string/success_message"
android:textSize="20sp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>