1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-20 17:23:46 +02:00
matomocamp-companion-android/res/layout/fragment_tracks.xml
Christophe Beyls 3146302878 Added "Live" section to show upcoming and currently running events,
refreshed every minute.
In this section, EventsAdapter shows the event start time and end time
instead of its day and start time.
2014-01-14 02:02:56 +01:00

35 lines
No EOL
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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"
app:pstsIndicatorColor="@color/fosdem_purple" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
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>