26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
![]() |
<?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">
|
||
|
|
||
|
<android.support.design.widget.BottomNavigationView
|
||
|
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"
|
||
|
app:itemBackground="@color/fdroid_blue"
|
||
|
app:itemIconTint="@android:color/white"
|
||
|
app:itemTextColor="@android:color/white" />
|
||
|
|
||
|
<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>
|