2016-06-04 17:28:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-03 23:28:04 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-06-04 17:28:05 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:orientation="vertical"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-04 21:34:21 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
2018-06-04 21:34:21 +02:00
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
2018-06-04 21:34:21 +02:00
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
app:contentInsetEndWithActions="48dp"
|
|
|
|
app:contentInsetStartWithNavigation="48dp"
|
|
|
|
android:elevation="4dp">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
2018-06-04 21:34:21 +02:00
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tabs_normal"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-05-04 19:13:56 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-06-04 21:34:21 +02:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:tabIndicatorColor="#FFFFFF"
|
|
|
|
app:tabMode="scrollable" />
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2018-06-04 21:34:21 +02:00
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tabs_compact"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/transparent"
|
2018-06-04 21:34:21 +02:00
|
|
|
app:tabMinWidth="0dp"
|
|
|
|
app:tabPadding="0dp"
|
|
|
|
app:tabIndicatorColor="#FFFFFF"
|
|
|
|
app:tabMode="scrollable" />
|
|
|
|
</android.support.v7.widget.Toolbar>
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
<android.support.v4.widget.DrawerLayout
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp">
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
<android.support.design.widget.NavigationView
|
|
|
|
android:id="@+id/navigation_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2018-06-04 21:34:21 +02:00
|
|
|
app:itemBackground="?selectableItemBackground"
|
2018-06-03 23:28:04 +02:00
|
|
|
app:itemTextColor="#FFFFFF"
|
|
|
|
android:layout_gravity="start" />
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|
2017-04-29 20:16:50 +02:00
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
</LinearLayout>
|