마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

액션바 같은거? 숨기는방법

0 추천

위부분에 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>
익명사용자 님이 2016년 5월 29일 질문

1개의 답변

0 추천
aucd29 (218,390 포인트) 님이 2016년 5월 30일 답변
...