
위부분에 mainactivity_map이라 떠있는부분을 없애고 풀스크린으로 하고싶은데 잘 모르겠네요..
xml입니다.
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="kr.co.company.mainactivity_map.myact"
map:cameraZoom="16"
map:mapType="normal"
/>
<!--최초 줌사이즈 15, 지도타입 노말-->
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<SearchView
android:layout_width="330dp"
android:layout_height="wrap_content"
android:id="@+id/view_search"
/>
<Button
android:id="@+id/button1"
android:layout_width="77dp"
android:layout_height="wrap_content"
android:text="내위치"
android:textSize="20dp"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:background="#ff38fdff"
/>
</LinearLayout>
</FrameLayout>