|
2 | 2 | <androidx.coordinatorlayout.widget.CoordinatorLayout |
3 | 3 | xmlns:android="http://schemas.android.com/apk/res/android" |
4 | 4 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 5 | + xmlns:tools="http://schemas.android.com/tools" |
5 | 6 | android:layout_width="match_parent" |
6 | | - android:layout_height="match_parent"> |
| 7 | + android:layout_height="match_parent" |
| 8 | + android:paddingBottom="0dp"> |
7 | 9 |
|
8 | 10 | <androidx.fragment.app.FragmentContainerView |
9 | 11 | android:id="@+id/contentFrame" |
|
15 | 17 | android:layout_width="match_parent" |
16 | 18 | android:layout_height="wrap_content" |
17 | 19 | android:layout_gravity="bottom" |
18 | | - app:backgroundTint="@color/darkForest"> |
| 20 | + app:backgroundTint="@color/cream"> |
19 | 21 |
|
20 | 22 | <androidx.constraintlayout.widget.ConstraintLayout |
21 | 23 | android:layout_width="match_parent" |
22 | 24 | android:layout_height="wrap_content" |
23 | 25 | android:orientation="horizontal"> |
24 | 26 |
|
| 27 | + |
25 | 28 | <androidx.appcompat.widget.AppCompatImageButton |
26 | 29 | android:id="@+id/homeButton" |
27 | 30 | android:layout_width="48dp" |
28 | 31 | android:layout_height="48dp" |
29 | | - android:background="@color/darkForest" |
| 32 | + android:layout_marginTop="4dp" |
| 33 | + android:layout_marginBottom="16dp" |
| 34 | + android:background="@color/cream" |
| 35 | + app:maxImageSize="30dp" |
30 | 36 | app:layout_constraintBottom_toBottomOf="parent" |
31 | 37 | app:layout_constraintEnd_toStartOf="@+id/scheduleButton" |
32 | 38 | app:layout_constraintHorizontal_bias="0.5" |
33 | 39 | app:layout_constraintStart_toStartOf="parent" |
34 | 40 | app:layout_constraintTop_toTopOf="parent" |
35 | | - app:srcCompat="@drawable/ic_home" /> |
| 41 | + app:layout_constraintVertical_bias="0.0" |
| 42 | + app:layout_constraintHorizontal_chainStyle="spread" |
| 43 | + app:tint="@color/black" |
| 44 | + app:srcCompat="@drawable/battle_png" /> |
| 45 | + |
36 | 46 |
|
37 | 47 | <androidx.appcompat.widget.AppCompatImageButton |
38 | 48 | android:id="@+id/scheduleButton" |
39 | 49 | android:layout_width="48dp" |
40 | 50 | android:layout_height="48dp" |
41 | | - android:background="@color/darkForest" |
| 51 | + android:background="@color/cream" |
| 52 | + app:maxImageSize="30dp" |
42 | 53 | app:layout_constraintBottom_toBottomOf="@id/homeButton" |
43 | 54 | app:layout_constraintEnd_toStartOf="@+id/placeholder" |
44 | 55 | app:layout_constraintHorizontal_bias="0.5" |
45 | 56 | app:layout_constraintStart_toEndOf="@+id/homeButton" |
46 | | - app:srcCompat="@drawable/ic_today" /> |
| 57 | + app:srcCompat="@drawable/schedule_png" /> |
| 58 | + |
47 | 59 |
|
48 | 60 | <View |
49 | 61 | android:id="@+id/placeholder" |
50 | | - android:layout_width="70dp" |
| 62 | + android:layout_width="72dp" |
51 | 63 | android:layout_height="0dp" |
52 | 64 | android:visibility="invisible" |
53 | 65 | app:layout_constraintBottom_toBottomOf="@id/homeButton" |
|
61 | 73 | android:layout_width="48dp" |
62 | 74 | android:layout_height="48dp" |
63 | 75 | android:layout_marginEnd="16dp" |
64 | | - android:background="@color/darkForest" |
| 76 | + android:background="@color/cream" |
| 77 | + app:maxImageSize="30dp" |
65 | 78 | app:layout_constraintBottom_toBottomOf="@id/homeButton" |
66 | 79 | app:layout_constraintEnd_toEndOf="parent" |
67 | 80 | app:layout_constraintHorizontal_bias="0.5" |
68 | 81 | app:layout_constraintStart_toEndOf="@+id/shopButton" |
69 | | - app:srcCompat="@drawable/ic_profile" /> |
| 82 | + app:srcCompat="@drawable/profile_png" /> |
| 83 | + |
70 | 84 |
|
71 | 85 | <androidx.appcompat.widget.AppCompatImageButton |
72 | 86 | android:id="@+id/shopButton" |
73 | 87 | android:layout_width="48dp" |
74 | 88 | android:layout_height="48dp" |
75 | 89 | android:layout_marginBottom="2dp" |
76 | | - android:background="@color/darkForest" |
| 90 | + android:background="@color/cream" |
| 91 | + app:maxImageSize="30dp" |
77 | 92 | app:layout_constraintBottom_toBottomOf="@id/homeButton" |
78 | 93 | app:layout_constraintEnd_toStartOf="@+id/profileButton" |
79 | 94 | app:layout_constraintHorizontal_bias="0.5" |
80 | 95 | app:layout_constraintStart_toEndOf="@+id/placeholder" |
81 | 96 | app:layout_constraintTop_toTopOf="@+id/homeButton" |
82 | | - app:srcCompat="@drawable/ic_point_shop" /> |
| 97 | + app:srcCompat="@drawable/shop_png" /> |
| 98 | + |
83 | 99 | </androidx.constraintlayout.widget.ConstraintLayout> |
84 | 100 |
|
85 | 101 | </com.google.android.material.bottomappbar.BottomAppBar> |
86 | 102 |
|
87 | 103 | <com.google.android.material.floatingactionbutton.FloatingActionButton |
88 | 104 | android:id="@+id/code_entry_fab" |
89 | | - android:layout_width="wrap_content" |
90 | | - android:layout_height="wrap_content" |
91 | | - app:backgroundTint="@color/white" |
92 | | - app:layout_anchor="@id/bottomAppBar" |
93 | | - app:srcCompat="@drawable/qr_icon" |
94 | | - app:tint="@color/selectedAppBarIcon"/> |
| 105 | + android:layout_width="72dp" |
| 106 | + android:layout_height="72dp" |
| 107 | + app:backgroundTint="@color/cream" |
| 108 | + android:layout_gravity="bottom|center" |
| 109 | + android:layout_marginBottom="30dp" |
| 110 | + android:layout_marginTop="20dp" |
| 111 | + app:fabCustomSize="72dp" |
| 112 | + app:maxImageSize="30dp" |
| 113 | + app:srcCompat="@drawable/camera_png" /> |
95 | 114 |
|
96 | | -<!-- <FrameLayout--> |
| 115 | + <!-- <FrameLayout--> |
97 | 116 | <!-- android:id="@+id/codeEntrySheet"--> |
98 | 117 | <!-- android:layout_width="wrap_content"--> |
99 | 118 | <!-- android:layout_height="wrap_content"--> |
|
0 commit comments