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 fada846d72 Updated fosdem purple colors & applied the colors to
PagerSlidingTabStrip
2013-12-29 04:05:47 +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="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>