|
5 | 5 | android:layout_width="match_parent" |
6 | 6 | android:layout_height="match_parent" |
7 | 7 | android:fitsSystemWindows="true" |
| 8 | + android:background="@color/colorPrimary" |
8 | 9 | tools:context=".UI.AddNotes.AddNotesFragment"> |
9 | 10 |
|
10 | 11 |
|
|
13 | 14 | style="@style/EditTextStyle" |
14 | 15 | android:layout_width="match_parent" |
15 | 16 | android:layout_height="50dp" |
16 | | - android:layout_marginTop="308dp" |
| 17 | + android:layout_marginTop="40dp" |
17 | 18 | android:background="@drawable/bg_edittext" |
18 | 19 | android:hint="@string/title_hint" |
19 | 20 | android:inputType="text" |
20 | | - android:textColor="@android:color/black" |
| 21 | + android:textColorHint="@color/hint_color" |
21 | 22 | android:textSize="16sp" |
22 | 23 | app:layout_constraintEnd_toEndOf="parent" |
23 | 24 | app:layout_constraintStart_toStartOf="parent" |
|
27 | 28 | android:id="@+id/notes_desc_et" |
28 | 29 | style="@style/EditTextStyle" |
29 | 30 | android:layout_width="match_parent" |
30 | | - android:layout_height="50dp" |
| 31 | + android:layout_height="wrap_content" |
31 | 32 | android:background="@drawable/bg_edittext" |
32 | 33 | android:hint="@string/desc_hint" |
33 | | - android:inputType="text" |
| 34 | + android:inputType="textCapSentences|textMultiLine" |
| 35 | + android:textColorHint="@color/hint_color" |
34 | 36 | app:layout_constraintEnd_toEndOf="parent" |
35 | 37 | app:layout_constraintStart_toStartOf="parent" |
36 | 38 | app:layout_constraintTop_toBottomOf="@+id/notes_title_et" /> |
|
43 | 45 | android:layout_marginEnd="16dp" |
44 | 46 | android:layout_marginBottom="16dp" |
45 | 47 | android:text="@string/save_notes_btn" |
| 48 | + android:backgroundTint="@color/colorAccent" |
| 49 | + android:textColor="@color/colorPrimary" |
46 | 50 | app:layout_constraintBottom_toBottomOf="parent" |
47 | 51 | app:layout_constraintEnd_toEndOf="parent" |
48 | 52 | app:layout_constraintStart_toStartOf="parent" /> |
|
0 commit comments