1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
matomocamp-companion-android/res/layout/fragment_tracks.xml
Christophe Beyls be01ed867a Added Tracks list and included PagerSlidingTabStrip code as tab
indicator to select the day.
Added cache for Days list in DatabaseManager and send a broadcast when
the schedule has been downloaded.
2013-12-23 23:30:05 +01:00

33 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:visibility="visible" >
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/indicator"
android:layout_width="match_parent"
android:layout_height="48dp" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/no_data"
android:visibility="gone" />
</FrameLayout>