diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-05-09 21:29:49 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-05-09 21:29:49 -0700 |
commit | 4bc80103be097c22f360447756658267eb2943c0 (patch) | |
tree | 6c159bd02363879e9e2523eda34bea921eed8d1a /subsonic-android/res | |
parent | 9b81170e0bc2ffe6fa635e52563f4509546b0d26 (diff) | |
download | dsub-4bc80103be097c22f360447756658267eb2943c0.tar.gz dsub-4bc80103be097c22f360447756658267eb2943c0.tar.bz2 dsub-4bc80103be097c22f360447756658267eb2943c0.zip |
Add song length total to album header
Diffstat (limited to 'subsonic-android/res')
-rw-r--r-- | subsonic-android/res/layout/select_album_header.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/select_album_header.xml b/subsonic-android/res/layout/select_album_header.xml index 63e91887..3af34a99 100644 --- a/subsonic-android/res/layout/select_album_header.xml +++ b/subsonic-android/res/layout/select_album_header.xml @@ -55,6 +55,19 @@ android:textSize="10sp" android:singleLine="true" android:ellipsize="none"/> + + <TextView + android:text="0:00" + android:id="@+id/select_album_song_length" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@+id/select_album_song_count" + android:layout_toRightOf="@+id/select_album_art" + android:paddingRight="4dip" + android:textAppearance="?android:attr/textAppearanceSmall" + android:textSize="10sp" + android:singleLine="true" + android:ellipsize="none"/> </RelativeLayout> |