aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/src/main/res/layout/search_anime_page.xml8
-rw-r--r--app/src/main/res/layout/search_manga_page.xml8
-rw-r--r--app/src/main/res/values/colors.xml1
-rw-r--r--app/src/main/res/values/strings.xml1
4 files changed, 12 insertions, 6 deletions
diff --git a/app/src/main/res/layout/search_anime_page.xml b/app/src/main/res/layout/search_anime_page.xml
index 1f95b10..631ebde 100644
--- a/app/src/main/res/layout/search_anime_page.xml
+++ b/app/src/main/res/layout/search_anime_page.xml
@@ -7,16 +7,18 @@
android:background="@color/very_dark_purple"
tools:context=".anime.search.SearchAnimePage">
-
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/tiet_query"
android:layout_width="0dp"
android:layout_height="wrap_content"
+ android:hint="@string/hint_query"
+ android:textColor="@color/very_light_magenta"
+ android:textColorHint="@color/grayish_magenta"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@id/recycler_view"
- app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintEnd_toStartOf="@id/button_query"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toStartOf="@id/button_query"/>
+ app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_query"
diff --git a/app/src/main/res/layout/search_manga_page.xml b/app/src/main/res/layout/search_manga_page.xml
index 1470311..02a62ff 100644
--- a/app/src/main/res/layout/search_manga_page.xml
+++ b/app/src/main/res/layout/search_manga_page.xml
@@ -7,16 +7,18 @@
android:background="@color/very_dark_purple"
tools:context=".manga.search.SearchMangaPage">
-
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/tiet_query"
android:layout_width="0dp"
android:layout_height="wrap_content"
+ android:hint="@string/hint_query"
+ android:textColor="@color/very_light_magenta"
+ android:textColorHint="@color/grayish_magenta"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@id/recycler_view"
- app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintEnd_toStartOf="@id/button_query"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toStartOf="@id/button_query"/>
+ app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_query"
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index ae0a497..1dc4ee9 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -10,4 +10,5 @@
<color name="very_light_magenta">#FF70FF</color>
<color name="strong_pink">#D52C70</color>
<color name="slightly_desaturated_magenta">#c583b6</color>
+ <color name="grayish_magenta">#c9a6c9</color>
</resources> \ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 2acf406..c8c8ab9 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -40,5 +40,6 @@
<string name="search">Search in the database</string>
<string name="search_anime">Search Anime</string>
<string name="search_anime_page_label">Search Anime Page</string>
+ <string name="hint_query">Your query …</string>
</resources> \ No newline at end of file
c3687a4a64e50e55b30&follow=1'>adding Serialization interface and methodsClyhtsuriva6-59/+63 2020-12-07Big updateMasfehico6-16/+99 Implementing the function to add songs. Cleaning a bit everywhere as well. 2020-12-07cleaning and adding stuff in playlistMasfehico3-2/+20 2020-12-07Updating song and audiobook accordingly to the last commitMasfehico2-8/+8 2020-12-07Adding the enum classesMasfehico3-0/+9 2020-12-07Updating song, audiobook and musical elements's sets and getsMasfehico3-5/+23 2020-12-07Finishing MusicalElement.javaMasfehico1-6/+11 2020-11-23Cleaning upMasfehico2-30/+0 2020-11-23Deleting the CSVSMasfehico5-3669/+0 2020-11-23Minor testing changesMasfehico7-43/+63 2020-11-23Musical elements updated and jMusicHub basic creationMasfehico2-0/+0 2020-11-23Musical elements updated and jMusicHub basic creationMasfehico4-3/+74 2020-11-21README.md updatedMasfehico1-3/+1 2020-11-19Started Song and MusicalElementMasfehico5-0/+190 2020-11-18Added CSVsMasfehico9-102/+3756 I added some csvs by exracting my ampache mysql DB. Also started to write on the README file already. 2020-11-18Firs filesMasfehico8-0/+103 Pushing the empty java files I'll be using with some csvs. 2020-11-17LICENSE updatedMasfehico1-68/+81