wulkanowy-mod/app/src/main/res/layout/activity_main.xml

34 lines
1.3 KiB
XML
Raw Normal View History

2018-03-04 05:49:16 -06:00
<?xml version="1.0" encoding="utf-8"?>
2018-10-03 14:28:23 -05:00
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-24 08:48:29 -05:00
android:id="@+id/mainContainer"
2018-03-04 05:49:16 -06:00
android:layout_width="match_parent"
2018-10-03 14:28:23 -05:00
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/mainAppBarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp">
<android.support.v7.widget.Toolbar
android:id="@+id/mainToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" />
</android.support.design.widget.AppBarLayout>
2018-08-24 08:48:29 -05:00
<FrameLayout
android:id="@+id/mainFragmentContainer"
android:layout_width="match_parent"
2018-10-03 14:28:23 -05:00
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/bottom_navigation_height"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2018-08-24 08:48:29 -05:00
<com.aurelhubert.ahbottomnavigation.AHBottomNavigation
android:id="@+id/mainBottomNav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
2018-10-03 14:28:23 -05:00
</android.support.design.widget.CoordinatorLayout>