aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/download_song_status.xml
blob: 50f952085282e7ac4a9edeb5ae6aa938a59b5118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>