24 lines
No EOL
845 B
XML
24 lines
No EOL
845 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="match_parent"
|
|
android:background="?attr/activity_background_color"
|
|
android:orientation="vertical">
|
|
|
|
<ExpandableListView
|
|
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"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:drawSelectorOnTop="false"
|
|
android:groupIndicator="@android:color/transparent"/>
|
|
|
|
<include layout="@layout/empty_state_my_tracks"
|
|
android:id="@android:id/empty"/>
|
|
|
|
</LinearLayout> |