aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/github/daneren2005/dsub/view/SongView.java
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@users.noreply.github.com>2022-07-25 16:56:15 -0700
committerGitHub <noreply@github.com>2022-07-25 16:56:15 -0700
commit84a8603b0f556f0541429269d97bc3e99eaa67b0 (patch)
treec59cccade4d02565c22ffbf0734a21a9f2cfb92b /app/src/main/java/github/daneren2005/dsub/view/SongView.java
parentd8d8b04d7d60717c16b778ebbb26ec63752ada25 (diff)
parent9acd92c0052a63b901b3bbe68733b96d8b791ee8 (diff)
downloaddsub-84a8603b0f556f0541429269d97bc3e99eaa67b0.tar.gz
dsub-84a8603b0f556f0541429269d97bc3e99eaa67b0.tar.bz2
dsub-84a8603b0f556f0541429269d97bc3e99eaa67b0.zip
Merge pull request #1114 from raminou/edge
Add song suffix as details of list song item
Diffstat (limited to 'app/src/main/java/github/daneren2005/dsub/view/SongView.java')
-rw-r--r--app/src/main/java/github/daneren2005/dsub/view/SongView.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/src/main/java/github/daneren2005/dsub/view/SongView.java b/app/src/main/java/github/daneren2005/dsub/view/SongView.java
index 320c5933..7a91ea6e 100644
--- a/app/src/main/java/github/daneren2005/dsub/view/SongView.java
+++ b/app/src/main/java/github/daneren2005/dsub/view/SongView.java
@@ -53,6 +53,7 @@ public class SongView extends UpdateView2<MusicDirectory.Entry, Boolean> {
private ImageView bookmarkButton;
private ImageView playedButton;
private View bottomRowView;
+ private TextView suffixTextView;
private DownloadService downloadService;
private long revision = -1;
@@ -92,6 +93,7 @@ public class SongView extends UpdateView2<MusicDirectory.Entry, Boolean> {
playedButton = (ImageButton) findViewById(R.id.song_played);
moreButton = (ImageView) findViewById(R.id.item_more);
bottomRowView = findViewById(R.id.song_bottom);
+ suffixTextView = (TextView) findViewById(R.id.song_suffix);
}
public void setObjectImpl(MusicDirectory.Entry song, Boolean checkable) {
@@ -175,6 +177,7 @@ public class SongView extends UpdateView2<MusicDirectory.Entry, Boolean> {
titleTextView.setText(title);
artistTextView.setText(artist);
+ suffixTextView.setText(song.getSuffix());
this.setBackgroundColor(0x00000000);
ratingBar.setVisibility(View.GONE);