<?xml version="1.0" encoding="utf-8"?> <androidx.drawerlayout.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:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/drawer_layout" tools:context=".MapsActivity"> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <fragment android:id="@+id/navHostFragment" android:layout_width="match_parent" android:layout_height="match_parent" android:name="androidx.navigation.fragment.NavHostFragment" app:defaultNavHost="true" app:navGraph="@navigation/navigation" /> <!-- <SearchView--> <!-- android:layout_width="match_parent"--> <!-- android:layout_height="wrap_content"--> <!-- android:layout_marginTop="5dp"--> <!-- android:layout_marginLeft="50dp"--> <!-- android:layout_marginRight="50dp"--> <!-- android:layout_gravity="center_horizontal"--> <!-- />--> <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#00000000" app:menu="@menu/tool_menu"> <androidx.appcompat.widget.SearchView android:id="@+id/searchView" android:layout_width="match_parent" android:layout_height="wrap_content"/> </androidx.appcompat.widget.Toolbar> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> </RelativeLayout> <!-- <LinearLayout--> <!-- android:id="@+id/LL_Load"--> <!-- android:layout_width="match_parent"--> <!-- android:layout_height="match_parent"--> <!-- android:orientation="vertical"--> <!-- android:gravity="center"--> <!-- >--> <!-- <TextView--> <!-- android:layout_width="wrap_content"--> <!-- android:layout_height="wrap_content"--> <!-- android:text="ロード中です..."--> <!-- />--> <!-- <ProgressBar--> <!-- android:layout_width="wrap_content"--> <!-- android:layout_height="wrap_content"--> <!-- />--> <!-- </LinearLayout>--> </FrameLayout> <com.google.android.material.navigation.NavigationView android:id="@+id/navView" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" app:menu="@menu/navdrawer_menu" /> </androidx.drawerlayout.widget.DrawerLayout>