diff --git a/app/src/main/java/com/cappielloantonio/play/ui/fragment/HomeTabMusicFragment.java b/app/src/main/java/com/cappielloantonio/play/ui/fragment/HomeTabMusicFragment.java index 9c6fe706..3b69623e 100644 --- a/app/src/main/java/com/cappielloantonio/play/ui/fragment/HomeTabMusicFragment.java +++ b/app/src/main/java/com/cappielloantonio/play/ui/fragment/HomeTabMusicFragment.java @@ -454,6 +454,7 @@ public class HomeTabMusicFragment extends Fragment implements ClickCallback { } else { if (bind != null) bind.starredArtistsPlaceholder.placeholder.setVisibility(View.GONE); if (bind != null) bind.starredArtistsSector.setVisibility(!artists.isEmpty() ? View.VISIBLE : View.GONE); + if (bind != null) bind.afterFavoritesDivider.setVisibility(!artists.isEmpty() ? View.VISIBLE : View.GONE); if (bind != null) bind.starredArtistsRecyclerView.setLayoutManager(new GridLayoutManager(requireContext(), UIUtil.getSpanCount(artists.size(), 5), GridLayoutManager.HORIZONTAL, false)); starredArtistAdapter.setItems(artists); diff --git a/app/src/main/res/layout/fragment_download.xml b/app/src/main/res/layout/fragment_download.xml index 7eac8f50..e092ef30 100644 --- a/app/src/main/res/layout/fragment_download.xml +++ b/app/src/main/res/layout/fragment_download.xml @@ -112,7 +112,7 @@ android:layout_height="wrap_content" android:layout_marginBottom="8dp" android:paddingStart="16dp" - android:paddingTop="8dp" + android:paddingTop="16dp" android:paddingEnd="16dp" android:text="@string/download_title_section" /> diff --git a/app/src/main/res/layout/fragment_home_tab_music.xml b/app/src/main/res/layout/fragment_home_tab_music.xml index fa07f24b..5a959e06 100644 --- a/app/src/main/res/layout/fragment_home_tab_music.xml +++ b/app/src/main/res/layout/fragment_home_tab_music.xml @@ -479,6 +479,7 @@ android:visibility="gone" />