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

26 lines
1.1 KiB
XML
Raw Normal View History

2018-03-04 05:49:16 -06:00
<?xml version="1.0" encoding="utf-8"?>
2018-10-20 13:59:46 -05:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
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">
2019-08-26 13:54:20 -05:00
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/mainToolbar"
style="@style/Widget.MaterialComponents.Toolbar.Surface"
2018-10-03 14:28:23 -05:00
android:layout_width="match_parent"
2019-08-26 13:54:20 -05:00
android:layout_height="wrap_content" />
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"
2019-08-26 13:54:20 -05:00
android:layout_marginTop="?actionBarSize"
android:layout_marginBottom="@dimen/bottom_navigation_height" />
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-20 13:59:46 -05:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>