aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/download_song_status.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-05 23:17:59 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-05 23:17:59 -0600
commit9d85909cc46919039a5046f5aed4e91a96c6e321 (patch)
tree9774ae3ae87169d05c396db3c3970b56f10d72eb /app/src/main/res/layout/download_song_status.xml
parentcb52e6a262544590cd70180e4a2df407fa13ff44 (diff)
downloaddsub-9d85909cc46919039a5046f5aed4e91a96c6e321.tar.gz
dsub-9d85909cc46919039a5046f5aed4e91a96c6e321.tar.bz2
dsub-9d85909cc46919039a5046f5aed4e91a96c6e321.zip
Even more improvements to player UI!
Diffstat (limited to 'app/src/main/res/layout/download_song_status.xml')
-rw-r--r--app/src/main/res/layout/download_song_status.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/src/main/res/layout/download_song_status.xml b/app/src/main/res/layout/download_song_status.xml
new file mode 100644
index 00000000..50f95208
--- /dev/null
+++ b/app/src/main/res/layout/download_song_status.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_marginVertical="16dp"
+ android:orientation="vertical"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+ <TextView
+ android:id="@+id/download_song_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginLeft="16dip"
+ android:layout_marginRight="16dip"
+ android:singleLine="true"
+ android:textStyle="bold"
+ style="@style/DownloadActionSongTitle"
+ android:textColor="?android:textColorPrimary"
+ tools:text="Entropy"/>
+ <TextView
+ android:id="@+id/download_status"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginLeft="16dip"
+ android:layout_marginRight="16dip"
+ android:layout_marginTop="6dp"
+ android:singleLine="true"
+ android:ellipsize="end"
+ style="@style/DownloadActionStatus"
+ android:textColor="?android:textColorSecondary"
+ tools:text="Beach Bunny - Emotional Creature"/>
+</LinearLayout> \ No newline at end of file