2016-12-18 16:56:28 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-16 04:18:46 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginTop="4dp"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
2017-05-06 09:49:39 -04:00
|
|
|
android:id="@+id/track_recycler"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:layout_width="match_parent"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:layout_height="match_parent"
|
2017-05-25 06:16:58 -04:00
|
|
|
tools:listitem="@layout/track_item"/>
|
2016-12-18 16:56:28 -05:00
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|