|
@@ -8,100 +8,116 @@
|
8
|
8
|
android:background="@color/rsb_white_60">
|
9
|
9
|
|
10
|
10
|
<ImageView
|
11
|
|
- android:id="@+id/bubble3"
|
12
|
|
- android:layout_width="69dp"
|
13
|
|
- android:layout_height="25dp"
|
14
|
|
- app:layout_constraintBottom_toTopOf="@+id/buttonRecoverAccount"
|
|
11
|
+ android:id="@+id/bubble1"
|
|
12
|
+ android:layout_width="@dimen/bubbleSize"
|
|
13
|
+ android:layout_height="@dimen/bubbleSize"
|
|
14
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
15
|
+ android:layout_marginTop="52dp"
|
|
16
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
17
|
+ android:contentDescription="@string/bubbleDescription"
|
|
18
|
+ app:layout_constraintBottom_toTopOf="@+id/bubble2"
|
15
|
19
|
app:layout_constraintEnd_toEndOf="parent"
|
16
|
20
|
app:layout_constraintStart_toStartOf="parent"
|
17
|
|
- app:layout_constraintTop_toBottomOf="@+id/applicationNameMeaning"
|
|
21
|
+ app:layout_constraintTop_toBottomOf="@+id/applicationNameLong"
|
18
|
22
|
app:srcCompat="@drawable/circle" />
|
19
|
23
|
|
20
|
24
|
<ImageView
|
21
|
25
|
android:id="@+id/bubble2"
|
22
|
|
- android:layout_width="69dp"
|
23
|
|
- android:layout_height="25dp"
|
|
26
|
+ android:layout_width="@dimen/bubbleSize"
|
|
27
|
+ android:layout_height="@dimen/bubbleSize"
|
|
28
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
29
|
+ android:layout_marginTop="28dp"
|
|
30
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
31
|
+ android:contentDescription="@string/bubbleDescription"
|
24
|
32
|
app:layout_constraintBottom_toTopOf="@+id/bubble3"
|
25
|
33
|
app:layout_constraintEnd_toEndOf="parent"
|
26
|
34
|
app:layout_constraintStart_toStartOf="parent"
|
27
|
|
- app:layout_constraintTop_toBottomOf="@+id/applicationNameMeaning"
|
28
|
|
- app:layout_constraintVertical_bias="0.756"
|
|
35
|
+ app:layout_constraintTop_toBottomOf="@id/bubble1"
|
|
36
|
+ app:srcCompat="@drawable/circle" />
|
|
37
|
+
|
|
38
|
+ <ImageView
|
|
39
|
+ android:id="@+id/bubble3"
|
|
40
|
+ android:layout_width="@dimen/bubbleSize"
|
|
41
|
+ android:layout_height="@dimen/bubbleSize"
|
|
42
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
43
|
+ android:layout_marginTop="28dp"
|
|
44
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
45
|
+ android:contentDescription="@string/bubbleDescription"
|
|
46
|
+ app:layout_constraintBottom_toTopOf="@id/buttonCreateAccount"
|
|
47
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
48
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
49
|
+ app:layout_constraintTop_toBottomOf="@id/bubble2"
|
29
|
50
|
app:srcCompat="@drawable/circle" />
|
30
|
51
|
|
31
|
52
|
<TextView
|
32
|
53
|
android:id="@+id/ApplicationName"
|
33
|
|
- android:layout_width="259dp"
|
34
|
|
- android:layout_height="98dp"
|
35
|
|
- android:fontFamily="@font/acme"
|
36
|
|
- android:text="TANIA"
|
|
54
|
+ android:layout_width="0dp"
|
|
55
|
+ android:layout_height="wrap_content"
|
|
56
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
57
|
+ android:layout_marginTop="128dp"
|
|
58
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
59
|
+ android:fontFamily="@font/cabin"
|
|
60
|
+ android:text="@string/appName"
|
37
|
61
|
android:textAlignment="center"
|
38
|
62
|
android:textColor="@color/colorPrimary"
|
39
|
63
|
android:textSize="80sp"
|
40
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
64
|
+ android:textStyle="bold"
|
41
|
65
|
app:layout_constraintEnd_toEndOf="parent"
|
42
|
66
|
app:layout_constraintStart_toStartOf="parent"
|
43
|
|
- app:layout_constraintTop_toTopOf="parent"
|
44
|
|
- app:layout_constraintVertical_bias="0.23" />
|
|
67
|
+ app:layout_constraintTop_toTopOf="parent" />
|
45
|
68
|
|
46
|
69
|
<TextView
|
47
|
|
- android:id="@+id/applicationNameMeaning"
|
48
|
|
- android:layout_width="336dp"
|
49
|
|
- android:layout_height="50dp"
|
50
|
|
- android:fontFamily="@font/acme"
|
51
|
|
- android:text="Timely And Non-Intrusive Assessments"
|
|
70
|
+ android:id="@+id/applicationNameLong"
|
|
71
|
+ android:layout_width="0dp"
|
|
72
|
+ android:layout_height="wrap_content"
|
|
73
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
74
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
75
|
+ android:fontFamily="@font/cabin"
|
|
76
|
+ android:text="@string/appNameLong"
|
52
|
77
|
android:textAlignment="center"
|
53
|
|
- android:textColor="@color/colorPrimary"
|
54
|
78
|
android:textSize="18sp"
|
55
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
56
|
79
|
app:layout_constraintEnd_toEndOf="parent"
|
57
|
|
- app:layout_constraintHorizontal_bias="0.493"
|
58
|
80
|
app:layout_constraintStart_toStartOf="parent"
|
59
|
|
- app:layout_constraintTop_toBottomOf="@+id/ApplicationName"
|
60
|
|
- app:layout_constraintVertical_bias="0.0" />
|
|
81
|
+ app:layout_constraintTop_toBottomOf="@+id/ApplicationName" />
|
61
|
82
|
|
62
|
83
|
<Button
|
63
|
84
|
android:id="@+id/buttonCreateAccount"
|
64
|
|
- android:layout_width="284dp"
|
65
|
|
- android:layout_height="60dp"
|
66
|
|
- android:backgroundTint="@color/colorPrimary"
|
67
|
|
- android:fontFamily="sans-serif-medium"
|
68
|
|
- android:text="@string/rss_join_study"
|
69
|
|
- android:textAlignment="center"
|
70
|
|
- android:textColor="@color/rsb_white_60"
|
71
|
|
- android:textSize="18sp"
|
|
85
|
+ android:layout_width="0dp"
|
|
86
|
+ android:layout_height="wrap_content"
|
|
87
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
88
|
+ android:layout_marginTop="52dp"
|
|
89
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
90
|
+ android:background="@drawable/button_background"
|
|
91
|
+ android:fontFamily="sans-serif-black"
|
|
92
|
+ android:paddingHorizontal="@dimen/buttonHorizontalPadding"
|
|
93
|
+ android:paddingVertical="@dimen/buttonVerticalPadding"
|
|
94
|
+ android:text="@string/createAccountButtonText"
|
|
95
|
+ android:textColor="@android:color/white"
|
|
96
|
+ android:textSize="@dimen/buttonTextSize"
|
72
|
97
|
android:textStyle="bold"
|
73
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
74
|
98
|
app:layout_constraintEnd_toEndOf="parent"
|
|
99
|
+ app:layout_constraintHeight_max="@dimen/buttonMaxHeight"
|
75
|
100
|
app:layout_constraintStart_toStartOf="parent"
|
76
|
|
- app:layout_constraintTop_toBottomOf="@+id/bubble3"
|
77
|
|
- app:layout_constraintVertical_bias="0.163" />
|
|
101
|
+ app:layout_constraintTop_toBottomOf="@id/bubble3" />
|
78
|
102
|
|
79
|
103
|
<Button
|
80
|
104
|
android:id="@+id/buttonRecoverAccount"
|
81
|
|
- android:layout_width="284dp"
|
82
|
|
- android:layout_height="60dp"
|
83
|
|
- android:layout_marginStart="60dp"
|
84
|
|
- android:layout_marginTop="120dp"
|
85
|
|
- android:layout_marginEnd="60dp"
|
86
|
|
- android:backgroundTint="@color/colorPrimary"
|
87
|
|
- android:fontFamily="@font/acme"
|
88
|
|
- android:text="Log In"
|
89
|
|
- android:textColor="@color/rsb_white_60"
|
90
|
|
- android:textSize="18sp"
|
|
105
|
+ android:layout_width="0dp"
|
|
106
|
+ android:layout_height="wrap_content"
|
|
107
|
+ android:layout_marginStart="@dimen/horizontalMargin"
|
|
108
|
+ android:layout_marginTop="16dp"
|
|
109
|
+ android:layout_marginEnd="@dimen/horizontalMargin"
|
|
110
|
+ android:background="@drawable/button_background"
|
|
111
|
+ android:fontFamily="sans-serif-black"
|
|
112
|
+ android:paddingHorizontal="@dimen/buttonHorizontalPadding"
|
|
113
|
+ android:paddingVertical="@dimen/buttonVerticalPadding"
|
|
114
|
+ android:text="@string/recoverAccountButtonText"
|
|
115
|
+ android:textColor="@android:color/white"
|
|
116
|
+ android:textSize="@dimen/buttonTextSize"
|
91
|
117
|
android:textStyle="bold"
|
92
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
93
|
118
|
app:layout_constraintEnd_toEndOf="parent"
|
|
119
|
+ app:layout_constraintHeight_max="@dimen/buttonMaxHeight"
|
94
|
120
|
app:layout_constraintStart_toStartOf="parent"
|
95
|
|
- app:layout_constraintTop_toBottomOf="@+id/applicationNameMeaning"
|
96
|
|
- app:layout_constraintVertical_bias="0.416" />
|
|
121
|
+ app:layout_constraintTop_toBottomOf="@id/buttonCreateAccount" />
|
97
|
122
|
|
98
|
|
- <ImageView
|
99
|
|
- android:id="@+id/bubble1"
|
100
|
|
- android:layout_width="69dp"
|
101
|
|
- android:layout_height="25dp"
|
102
|
|
- app:layout_constraintBottom_toTopOf="@+id/bubble2"
|
103
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
104
|
|
- app:layout_constraintStart_toStartOf="parent"
|
105
|
|
- app:layout_constraintTop_toBottomOf="@+id/applicationNameMeaning"
|
106
|
|
- app:srcCompat="@drawable/circle" />
|
107
|
123
|
</androidx.constraintlayout.widget.ConstraintLayout>
|