Go to artist when clicking on the artist name in album page
This commit is contained in:
parent
f93407ca35
commit
30c4b18444
1 changed files with 5 additions and 0 deletions
|
|
@ -166,6 +166,11 @@ public class AlbumDetailActivity extends AbsSlidingMusicPanelActivity implements
|
||||||
private void setUpViews() {
|
private void setUpViews() {
|
||||||
setUpRecyclerView();
|
setUpRecyclerView();
|
||||||
setUpSongsAdapter();
|
setUpSongsAdapter();
|
||||||
|
artistTextView.setOnClickListener(v -> {
|
||||||
|
if (album != null) {
|
||||||
|
NavigationUtil.goToArtist(AlbumDetailActivity.this, album.getArtistId());
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadAlbumCover() {
|
private void loadAlbumCover() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue