Fixed Playlist view wrong background color on dark theme and removed the unneeded menu button from the artist and album list.
This commit is contained in:
parent
fc2741f088
commit
cdc34e33a6
4 changed files with 16 additions and 1 deletions
|
|
@ -25,6 +25,15 @@
|
||||||
|
|
||||||
<p>You can view the changelog dialog again at any time from the <i>about</i> section.</p>
|
<p>You can view the changelog dialog again at any time from the <i>about</i> section.</p>
|
||||||
|
|
||||||
|
<h3>Version 0.9.43 beta2</h3>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li><b>FIX:</b> Playlist view wrong background color on dark theme.
|
||||||
|
</li>
|
||||||
|
<li><b>FIX:</b> Removed the unneeded menu button from the artist and album list.
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
<h3>Version 0.9.43 beta1</h3>
|
<h3>Version 0.9.43 beta1</h3>
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
|
|
|
||||||
|
|
@ -210,6 +210,9 @@ public class AlbumAdapter extends AbsMultiSelectAdapter<AlbumAdapter.ViewHolder,
|
||||||
public ViewHolder(@NonNull final View itemView) {
|
public ViewHolder(@NonNull final View itemView) {
|
||||||
super(itemView);
|
super(itemView);
|
||||||
setImageTransitionName(activity.getString(R.string.transition_album_art));
|
setImageTransitionName(activity.getString(R.string.transition_album_art));
|
||||||
|
if (menu != null) {
|
||||||
|
menu.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -199,6 +199,9 @@ public class ArtistAdapter extends AbsMultiSelectAdapter<ArtistAdapter.ViewHolde
|
||||||
public ViewHolder(@NonNull View itemView) {
|
public ViewHolder(@NonNull View itemView) {
|
||||||
super(itemView);
|
super(itemView);
|
||||||
setImageTransitionName(activity.getString(R.string.transition_artist_image));
|
setImageTransitionName(activity.getString(R.string.transition_artist_image));
|
||||||
|
if (menu != null) {
|
||||||
|
menu.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -54,9 +54,9 @@ public class PlaylistDetailActivity extends AbsSlidingMusicPanelActivity impleme
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
setStatusBarTransparent();
|
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
ButterKnife.bind(this);
|
ButterKnife.bind(this);
|
||||||
|
setStatusBarTransparent();
|
||||||
|
|
||||||
getIntentExtras();
|
getIntentExtras();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue