30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context="com.herbron.moodl.Activities.CurrencyDetailsActivity">
|
|
|
|
<com.herbron.moodl.LayoutManagers.CustomViewPager
|
|
android:id="@+id/vfCurrencyDetails"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="56dp"/>
|
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
android:id="@+id/navigation_details"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="0dp"
|
|
android:layout_marginStart="0dp"
|
|
android:layout_marginLeft="0dp"
|
|
android:layout_marginRight="0dp"
|
|
android:background="?android:attr/windowBackground"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:menu="@menu/navigation_details"
|
|
android:layout_alignParentBottom="true"/>
|
|
|
|
</RelativeLayout> |