174 lines
6.4 KiB
XML
174 lines
6.4 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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="ch.pizzalink.android.activity.MainActivity">
|
|
|
|
<ch.pizzalink.android.view.PizzalinkToolbar
|
|
android:id="@+id/pizzalinkToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:title="@string/bottom_nav_menu_item_menu"
|
|
app:showHamburgerMenuIcon="true"/>
|
|
|
|
<android.support.v4.widget.DrawerLayout
|
|
android:id="@+id/drawerLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/pizzalinkToolbar"
|
|
android:layout_above="@+id/bottomNavigationViewLayout">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/actvity_default_background_color_1"/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/navigationMenuRecyclerView"
|
|
android:layout_width="240dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="@color/white"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/bottomNavigationViewLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_alignParentBottom="true">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@drawable/shadow" />
|
|
|
|
<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
|
|
android:id="@+id/bottomNavigationView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:itemIconTint="@drawable/selector_bottom_navigation_item"
|
|
app:itemTextColor="@drawable/selector_bottom_navigation_item"
|
|
android:background="@color/white"
|
|
app:menu="@menu/menu_bottom_navigation"
|
|
app:itemBackground="@color/white"
|
|
app:elevation="0dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<!--
|
|
|
|
full screen navigation drawer
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.DrawerLayout
|
|
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:id="@+id/drawerLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="ch.pizzalink.android.activity.MainActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<ch.pizzalink.android.view.PizzalinkToolbar
|
|
android:id="@+id/pizzalinkToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:title="@string/bottom_nav_menu_item_order"
|
|
app:showHamburgerMenuIcon="true"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/white"/>
|
|
|
|
<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
|
|
android:id="@+id/bottomNavigationView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:layout_gravity="bottom"
|
|
app:itemIconTint="@drawable/selector_bottom_navigation_item"
|
|
app:itemTextColor="@drawable/selector_bottom_navigation_item"
|
|
android:background="@color/white"
|
|
app:menu="@menu/menu_bottom_navigation"
|
|
app:itemBackground="@color/black"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/layout_navigation_drawer"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
-->
|
|
|
|
|
|
<!--
|
|
|
|
navigation menu between toolbar and bottom navigation
|
|
|
|
<?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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="ch.pizzalink.android.activity.MainActivity">
|
|
|
|
<ch.pizzalink.android.view.PizzalinkToolbar
|
|
android:id="@+id/pizzalinkToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:title="@string/bottom_nav_menu_item_order"
|
|
app:showHamburgerMenuIcon="true"/>
|
|
|
|
<android.support.v4.widget.DrawerLayout
|
|
android:id="@+id/drawerLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/pizzalinkToolbar"
|
|
android:layout_above="@+id/bottomNavigationView">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/white"/>
|
|
|
|
<include layout="@layout/layout_navigation_drawer"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
|
|
android:id="@+id/bottomNavigationView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
app:itemIconTint="@drawable/selector_bottom_navigation_item"
|
|
app:itemTextColor="@drawable/selector_bottom_navigation_item"
|
|
android:background="@color/white"
|
|
app:menu="@menu/menu_bottom_navigation"
|
|
app:itemBackground="@color/black"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
--> |