mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
48 lines
2.0 KiB
XML
48 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
app:contentInsetStart="14dp"
|
|
app:contentInsetLeft="14dp"
|
|
android:elevation="4dp"
|
|
android:theme="?attr/actionBarStyle"/>
|
|
|
|
<android.support.design.widget.TabLayout
|
|
android:id="@+id/tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="4dp"
|
|
android:layout_gravity="top"
|
|
android:background="?attr/colorPrimary"
|
|
app:tabMode="fixed"
|
|
app:tabPaddingStart="3dp"
|
|
app:tabPaddingEnd="3dp"
|
|
app:tabBackground="?attr/colorPrimary"
|
|
app:tabIndicatorColor="@color/white"
|
|
app:tabTextColor="@color/gray10"
|
|
app:tabSelectedTextColor="@color/white"/>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|