mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 17:33:22 +00:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<android.support.design.widget.TabLayout
|
||
|
|
android:id="@+id/tab_layout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="?attr/actionBarSize"
|
||
|
|
android:layout_gravity="bottom"
|
||
|
|
android:background="?attr/colorPrimary"
|
||
|
|
android:elevation="0dp"
|
||
|
|
android:fillViewport="false"
|
||
|
|
|
||
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
||
|
|
app:layout_anchor="@+id/collapsing_toolbar"
|
||
|
|
app:layout_anchorGravity="bottom"
|
||
|
|
|
||
|
|
app:layout_collapseMode="pin"
|
||
|
|
app:tabGravity="fill"
|
||
|
|
app:tabIndicatorColor="@android:color/white"
|
||
|
|
app:tabMode="fixed" />
|
||
|
|
|
||
|
|
<android.support.v4.view.ViewPager
|
||
|
|
android:id="@+id/view_pager"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0px"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:background="@android:color/white" />
|
||
|
|
|
||
|
|
</LinearLayout>
|