39 lines
1.5 KiB
XML
39 lines
1.5 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"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/track_activity_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:id="@+id/appbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1">
|
||
|
|
||
|
<android.support.v4.view.ViewPager
|
||
|
android:id="@+id/pager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"/>
|
||
|
|
||
|
</FrameLayout>
|
||
|
|
||
|
<android.support.design.widget.BottomNavigationView
|
||
|
android:id="@+id/bottom_navigation"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?attr/wikivoyage_card_bg_color"
|
||
|
android:visibility="gone"
|
||
|
tools:visibility="visible"
|
||
|
app:itemBackground="?attr/wikivoyage_card_bg_color"
|
||
|
app:menu="@menu/track_bottom_navigation"
|
||
|
tools:itemIconTint="@color/bottom_navigation_color_selector_light"
|
||
|
tools:itemTextColor="@color/bottom_navigation_color_selector_light"/>
|
||
|
|
||
|
</LinearLayout>
|