2015-02-23 15:19:53 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-03 14:32:49 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-07-04 18:58:10 +02:00
|
|
|
android:background="?attr/activity_background_color"
|
2017-08-03 14:32:49 +02:00
|
|
|
android:orientation="vertical">
|
2015-02-23 15:19:53 +01:00
|
|
|
|
2015-04-17 00:37:39 +02:00
|
|
|
<ExpandableListView
|
2015-02-23 15:19:53 +01:00
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-02-18 13:59:44 +01:00
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:drawSelectorOnTop="false"
|
2015-02-23 15:19:53 +01:00
|
|
|
android:groupIndicator="@android:color/transparent"/>
|
|
|
|
|
2017-08-11 11:11:16 +02:00
|
|
|
<include layout="@layout/empty_state_my_tracks"
|
|
|
|
android:id="@android:id/empty"/>
|
2017-08-02 10:25:08 +02:00
|
|
|
|
2015-02-23 15:19:53 +01:00
|
|
|
</LinearLayout>
|