mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
feat: edited the interface of top songs divided by week, month, and year
This commit is contained in:
parent
477331da6f
commit
f94e5892cd
7 changed files with 117 additions and 48 deletions
|
|
@ -311,16 +311,15 @@
|
|||
android:text="@string/home_title_top_songs" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/grid_tracks_recycler_view"
|
||||
android:id="@+id/top_songs_recycler_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:clipToPadding="false"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingBottom="8dp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
|
|
|
|||
12
app/src/main/res/menu/filter_top_songs_popup_menu.xml
Normal file
12
app/src/main/res/menu/filter_top_songs_popup_menu.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/menu_last_week_name"
|
||||
android:title="@string/menu_last_week_name" />
|
||||
<item
|
||||
android:id="@+id/menu_last_month_name"
|
||||
android:title="@string/menu_last_month_name" />
|
||||
<item
|
||||
android:id="@+id/menu_last_year_name"
|
||||
android:title="@string/menu_last_year_name" />
|
||||
</menu>
|
||||
|
|
@ -110,6 +110,8 @@
|
|||
<string name="home_title_last_played">Last played</string>
|
||||
<string name="home_title_last_played_see_all_button">See all</string>
|
||||
<string name="home_title_last_week">Last week</string>
|
||||
<string name="home_title_last_month">Last month</string>
|
||||
<string name="home_title_last_year">Last year</string>
|
||||
<string name="home_title_made_for_you">Made for you</string>
|
||||
<string name="home_title_most_played">Most played</string>
|
||||
<string name="home_title_most_played_see_all_button">See all</string>
|
||||
|
|
@ -155,6 +157,9 @@
|
|||
<string name="menu_group_by_track">Track</string>
|
||||
<string name="menu_group_by_year">Year</string>
|
||||
<string name="menu_home_label">Home</string>
|
||||
<string name="menu_last_week_name">Last week</string>
|
||||
<string name="menu_last_month_name">Last month</string>
|
||||
<string name="menu_last_year_name">Last year</string>
|
||||
<string name="menu_library_label">Library</string>
|
||||
<string name="menu_search_button">Search</string>
|
||||
<string name="menu_settings_button">Settings</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue