mirror of
https://github.com/etesync/android
synced 2024-11-15 20:38:58 +00:00
44 lines
2.0 KiB
XML
44 lines
2.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<!--
|
|||
|
~ Copyright © 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
|||
|
~ All rights reserved. This program and the accompanying materials
|
|||
|
~ are made available under the terms of the GNU Public License v3.0
|
|||
|
~ which accompanies this distribution, and is available at
|
|||
|
~ http://www.gnu.org/licenses/gpl.html
|
|||
|
-->
|
|||
|
|
|||
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|||
|
android:orientation="vertical"
|
|||
|
android:fitsSystemWindows="true"
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_height="match_parent">
|
|||
|
|
|||
|
<android.support.design.widget.AppBarLayout
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_height="wrap_content"
|
|||
|
app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
|
|||
|
|
|||
|
<android.support.v7.widget.Toolbar
|
|||
|
android:id="@+id/toolbar"
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_height="?attr/actionBarSize"/>
|
|||
|
|
|||
|
<android.support.design.widget.TabLayout
|
|||
|
android:id="@+id/tabs"
|
|||
|
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|||
|
android:background="@color/light_green700"
|
|||
|
app:tabIndicatorColor="@color/light_green500"
|
|||
|
app:tabMode="scrollable"
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_height="wrap_content"/>
|
|||
|
|
|||
|
</android.support.design.widget.AppBarLayout>
|
|||
|
|
|||
|
<android.support.v4.view.ViewPager
|
|||
|
android:id="@+id/viewpager"
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_height="match_parent"
|
|||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|||
|
|
|||
|
</android.support.design.widget.CoordinatorLayout>
|