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

34 lines
1.4 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-10-03 14:28:23 -05:00
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">
2018-10-20 13:59:46 -05:00
<com.google.android.material.appbar.AppBarLayout
2018-10-03 14:28:23 -05:00
android:id="@+id/mainAppBarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-10-22 15:47:54 -05:00
android:theme="@style/WulkanowyTheme.ActionBar"
2018-10-03 14:28:23 -05:00
app:elevation="0dp">
2018-10-20 13:59:46 -05:00
<androidx.appcompat.widget.Toolbar
2018-10-03 14:28:23 -05:00
android:id="@+id/mainToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" />
2018-10-20 13:59:46 -05:00
</com.google.android.material.appbar.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-20 13:59:46 -05:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>