29 lines
936 B
XML
29 lines
936 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/song_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Song Title"
|
|
android:textColor="@color/textcolorPrimary"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:ellipsize="end"
|
|
android:maxLines="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/song_artist"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Artist Name"
|
|
android:textSize="14sp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="#757575" />
|
|
|
|
</LinearLayout> |