2014-02-09 21:17:30 +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-13 00:39:51 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_height="match_parent">
|
2014-05-05 00:58:22 +02: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" />
|
2014-06-28 20:53:37 +02:00
|
|
|
|
2014-07-28 11:11:23 +02:00
|
|
|
<LinearLayout
|
2015-02-03 16:05:18 +01:00
|
|
|
android:layout_below="@id/toolbar_include"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<include layout="@layout/notify_area" />
|
2014-07-28 11:11:23 +02:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/view_key_status_layout"
|
2014-07-28 11:11:23 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/view_key_status_image"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/view_key_status_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginLeft="8dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
|
|
|
|
android:background="?android:attr/listDivider"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:id="@+id/view_key_status_divider" />
|
|
|
|
|
|
2015-01-15 14:48:13 +01:00
|
|
|
<com.astuetz.PagerSlidingTabStrip
|
2015-01-13 23:15:13 +01:00
|
|
|
android:id="@+id/view_key_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"
|
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
|
app:pstsIndicatorColor="#FFFFFF" />
|
2013-12-25 18:15:30 +01:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
|
android:id="@+id/view_key_pager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0px"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:background="@android:color/white" />
|
2014-01-13 00:39:51 +01:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
</RelativeLayout>
|