-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_division_menu.xml
More file actions
71 lines (67 loc) · 2.9 KB
/
activity_division_menu.xml
File metadata and controls
71 lines (67 loc) · 2.9 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/level_select_background"
tools:context=".MainActivity">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonDivisionBasic"
android:layout_width="262dp"
android:layout_height="74dp"
android:layout_marginTop="120dp"
android:background="@drawable/button_shape"
android:backgroundTint="#de5721"
android:elevation="15dp"
android:fontFamily="casual"
android:text="First Steps"
android:textAllCaps="false"
android:textColor="#FFEEBA"
android:textSize="24sp"
android:textStyle="bold"
app:iconTint="#FFFFFF"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rippleColor="#A8433103" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonDivisionAdvanced"
android:layout_width="308dp"
android:layout_height="74dp"
android:layout_marginTop="75dp"
android:background="@drawable/button_shape"
android:backgroundTint="#0c5dad"
android:elevation="5dp"
android:fontFamily="casual"
android:text="Test your skills"
android:textAllCaps="false"
android:textColor="#FFEEBA"
android:textSize="24sp"
android:textStyle="bold"
app:iconTint="#FFFFFF"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.496"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonDivisionBasic"
app:rippleColor="#A8CD9918" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonDivisionCustom"
android:layout_width="344dp"
android:layout_height="73dp"
android:layout_marginTop="75dp"
android:background="@drawable/button_shape"
android:backgroundTint="#e0e034"
android:elevation="5dp"
android:fontFamily="casual"
android:text="Set your own limits!"
android:textAllCaps="false"
android:textColor="#231C06"
android:textSize="24sp"
android:textStyle="bold"
app:iconTint="#FFFFFF"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonDivisionAdvanced"
app:rippleColor="#A8CD9918" />
</androidx.constraintlayout.widget.ConstraintLayout>