2017-02-21 11:34:07 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout 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:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2017-03-21 15:50:12 +11:00
|
|
|
<com.ashokvarma.bottomnavigation.BottomNavigationBar
|
2017-02-21 11:34:07 +11:00
|
|
|
android:id="@+id/bottom_navigation"
|
|
|
|
app:menu="@menu/main_activity_screens"
|
2017-03-21 15:50:12 +11:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-02-21 11:34:07 +11:00
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/main_view_pager"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_above="@+id/bottom_navigation"
|
|
|
|
android:layout_width="match_parent"
|
2017-03-15 11:00:51 +11:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:listitem="@layout/main_tab_whats_new" />
|
|
|
|
|
2017-02-21 11:34:07 +11:00
|
|
|
</RelativeLayout>
|