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-15 08:37:51 +11:00
|
|
|
<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
|
2017-02-21 11:34:07 +11:00
|
|
|
android:id="@+id/bottom_navigation"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
app:menu="@menu/main_activity_screens"
|
2017-03-01 12:29:10 +01:00
|
|
|
android:background="@color/fdroid_blue"
|
2017-02-21 11:34:07 +11:00
|
|
|
app:itemBackground="@color/fdroid_blue"
|
2017-03-15 11:00:04 +11:00
|
|
|
app:itemIconTint="@color/bottom_nav_items"
|
|
|
|
app:itemTextColor="@color/bottom_nav_items" />
|
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"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|