summaryrefslogtreecommitdiffstats
path: root/res/layout/activity_artist_detail.xml
blob: 1670794a93b817e1ef51c1d4305b9572be00fbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/activity_artist_detail_background_color" >

    <include
        layout="@layout/loading_empty_container" />

    <ListView
        android:id="@+id/songs"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:divider="@null"
        android:dividerHeight="0dp"/>
</RelativeLayout>