2012-03-12 15:10:26 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-13 23:15:13 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-15 14:48:13 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2014-01-09 22:58:52 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_height="match_parent">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<include
|
2015-02-03 16:05:18 +01:00
|
|
|
android:id="@+id/toolbar_include"
|
2015-02-03 14:28:54 +01:00
|
|
|
layout="@layout/toolbar_standalone" />
|
2015-01-13 23:15:13 +01:00
|
|
|
|
|
|
|
|
<LinearLayout
|
2015-02-03 16:05:18 +01:00
|
|
|
android:layout_below="@id/toolbar_include"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_height="match_parent"
|
2015-02-03 14:28:54 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:elevation="4dp">
|
2015-01-13 23:15:13 +01:00
|
|
|
|
2015-01-15 14:48:13 +01:00
|
|
|
<com.astuetz.PagerSlidingTabStrip
|
2015-01-13 23:15:13 +01:00
|
|
|
android:id="@+id/sliding_tab_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
2015-01-15 14:48:13 +01:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="?attr/colorPrimary"
|
2015-02-23 00:11:06 +01:00
|
|
|
android:textColor="@color/tab_text"
|
|
|
|
|
app:pstsTextColorSelected="@color/tab_text_selected"
|
|
|
|
|
app:pstsIndicatorColor="@color/tab_indicator" />
|
2015-01-13 23:15:13 +01:00
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
|
android:id="@+id/pager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
</RelativeLayout>
|