tempus/app/src/main/res/layout/fragment_search.xml

153 lines
6.6 KiB
XML
Raw Normal View History

2020-11-20 15:38:08 +01:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
2020-12-05 21:31:12 +01:00
android:layout_height="match_parent">
2020-11-20 15:38:08 +01:00
<com.paulrybitskyi.persistentsearchview.PersistentSearchView
android:id="@+id/persistentSearchView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:paddingStart="12dp"
android:paddingEnd="12dp"
2020-11-25 15:12:07 +01:00
app:areSuggestionsDisabled="false"
app:cardBackgroundColor="?attr/colorSurface"
app:cardCornerRadius="0dp"
app:cardElevation="0dp"
2020-11-20 15:38:08 +01:00
app:clearInputButtonDrawable="@drawable/ic_close"
app:dividerColor="@color/dividerColor"
app:isClearInputButtonEnabled="true"
app:isDismissableOnTouchOutside="true"
app:isProgressBarEnabled="true"
2020-11-21 13:54:49 +01:00
app:isVoiceInputButtonEnabled="false"
2020-11-20 15:38:08 +01:00
app:leftButtonDrawable="@drawable/ic_search"
app:progressBarColor="?attr/colorOnSurface"
app:queryInputBarIconColor="@color/searchPlaceholderColor"
app:queryInputCursorColor="?attr/colorOnSurface"
app:queryInputHint="@string/search_hint"
app:queryInputHintColor="@color/searchPlaceholderColor"
app:queryInputTextColor="@color/searchPlaceholderColor"
app:shouldDimBehind="false"
app:suggestionRecentSearchIconColor="@color/searchColor"
app:suggestionSearchSuggestionIconColor="@color/searchColor"
app:suggestionSelectedTextColor="?attr/colorPrimary"
app:suggestionTextColor="@color/searchColor"
app:suggestionIconColor="@color/searchColor" />
<View
android:id="@+id/search_bar_divider"
android:layout_width="match_parent"
android:layout_height="0.75dp"
android:layout_marginStart="12dp"
android:layout_marginEnd="12dp"
android:layout_below="@+id/persistentSearchView"
android:background="?attr/colorSurfaceVariant" />
2020-11-20 15:38:08 +01:00
<androidx.core.widget.NestedScrollView
android:id="@+id/search_result_nested_scroll_view"
2020-11-20 15:38:08 +01:00
android:layout_width="match_parent"
2020-11-21 13:54:49 +01:00
android:layout_height="wrap_content"
android:layout_below="@id/search_bar_divider">
2020-11-21 13:54:49 +01:00
2021-04-20 11:53:51 +02:00
<!-- Search result -->
2020-11-21 13:54:49 +01:00
<LinearLayout
2021-04-20 11:53:51 +02:00
android:id="@+id/search_result_layout"
2020-11-21 13:54:49 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-04-20 11:53:51 +02:00
android:orientation="vertical"
android:paddingBottom="@dimen/global_padding_bottom">
2020-11-21 13:54:49 +01:00
2021-09-13 17:24:24 +02:00
<!-- Artist -->
2020-11-21 13:54:49 +01:00
<LinearLayout
2021-09-13 17:24:24 +02:00
android:id="@+id/search_artist_sector"
2020-11-21 13:54:49 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-04-20 11:53:51 +02:00
android:orientation="vertical"
android:paddingBottom="8dp"
android:visibility="gone">
2020-11-21 13:54:49 +01:00
2021-04-20 11:53:51 +02:00
<TextView
2022-01-13 10:38:46 +01:00
style="@style/TitleLarge"
android:layout_width="match_parent"
2020-11-21 13:54:49 +01:00
android:layout_height="wrap_content"
2021-04-20 11:53:51 +02:00
android:paddingStart="16dp"
android:paddingTop="20dp"
android:paddingEnd="16dp"
2021-09-13 17:24:24 +02:00
android:text="@string/search_title_artist" />
2020-11-21 13:54:49 +01:00
<androidx.recyclerview.widget.RecyclerView
2021-09-13 17:24:24 +02:00
android:id="@+id/search_result_artist_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-04-20 11:53:51 +02:00
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:clipToPadding="false"
2021-09-13 17:24:24 +02:00
android:paddingStart="16dp"
2021-04-20 11:53:51 +02:00
android:paddingTop="8dp"
2021-09-13 17:24:24 +02:00
android:paddingEnd="8dp"
2021-04-20 11:53:51 +02:00
android:paddingBottom="8dp" />
2020-11-21 13:54:49 +01:00
</LinearLayout>
2021-04-20 11:53:51 +02:00
<!-- Album -->
2020-11-22 19:11:38 +01:00
<LinearLayout
2021-04-20 11:53:51 +02:00
android:id="@+id/search_album_sector"
2020-11-22 19:11:38 +01:00
android:layout_width="match_parent"
2020-11-21 13:54:49 +01:00
android:layout_height="wrap_content"
2020-12-08 11:12:44 +01:00
android:orientation="vertical"
android:paddingBottom="8dp"
android:visibility="gone">
2020-11-21 13:54:49 +01:00
2020-11-24 10:52:00 +01:00
<TextView
2022-01-13 10:38:46 +01:00
style="@style/TitleLarge"
2021-04-20 11:53:51 +02:00
android:layout_width="match_parent"
2020-11-24 10:52:00 +01:00
android:layout_height="wrap_content"
android:paddingStart="16dp"
2021-04-20 11:53:51 +02:00
android:paddingTop="20dp"
android:paddingEnd="16dp"
2021-09-04 19:00:41 +02:00
android:text="@string/search_title_album" />
2020-11-24 10:52:00 +01:00
2020-11-22 19:11:38 +01:00
<androidx.recyclerview.widget.RecyclerView
2021-04-20 11:53:51 +02:00
android:id="@+id/search_result_album_recycler_view"
2020-11-22 19:11:38 +01:00
android:layout_width="match_parent"
2021-04-20 11:53:51 +02:00
android:layout_height="match_parent"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
2020-11-22 19:11:38 +01:00
android:clipToPadding="false"
2021-04-20 11:53:51 +02:00
android:paddingStart="16dp"
2020-11-22 19:11:38 +01:00
android:paddingTop="8dp"
2021-04-20 11:53:51 +02:00
android:paddingEnd="8dp"
android:paddingBottom="8dp" />
</LinearLayout>
2021-09-13 17:24:24 +02:00
<!-- Songs -->
2021-04-20 11:53:51 +02:00
<LinearLayout
2021-09-13 17:24:24 +02:00
android:id="@+id/search_song_sector"
2021-04-20 11:53:51 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="8dp"
android:visibility="gone">
2020-11-22 19:11:38 +01:00
<TextView
2022-01-13 10:38:46 +01:00
style="@style/TitleLarge"
2021-04-20 11:53:51 +02:00
android:layout_width="match_parent"
2020-11-22 19:11:38 +01:00
android:layout_height="wrap_content"
android:paddingStart="16dp"
2021-04-20 11:53:51 +02:00
android:paddingTop="20dp"
android:paddingEnd="16dp"
2021-09-13 17:24:24 +02:00
android:text="@string/search_title_song" />
2020-11-22 19:11:38 +01:00
<androidx.recyclerview.widget.RecyclerView
2021-09-13 17:24:24 +02:00
android:id="@+id/search_result_tracks_recycler_view"
2020-11-22 19:11:38 +01:00
android:layout_width="match_parent"
2021-04-20 11:53:51 +02:00
android:layout_height="match_parent"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
2020-11-22 19:11:38 +01:00
android:clipToPadding="false"
android:paddingTop="8dp"
2021-04-20 11:53:51 +02:00
android:paddingBottom="8dp" />
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
2020-11-20 15:38:08 +01:00
</RelativeLayout>