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

프레임 레이아웃에서 모서리 라운드 처리 질문..

0 추천

프레임 레이아웃에 맵 프래그먼트가 안에 들어가 있습니다. 라운드 처리를 하고 싶은데 라운드 처리한 xml을 background를 해도 안먹고 그 위에 라운드 처리한 레이아웃을 덮어봐도 모서리가 안먹네요.. 왜인지 이유를 잘 모르겠습니다 뭐가 문제인지 조언을 주시면 감사하겠습니다..

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="@dimen/new_hint_map_width"
    android:id="@+id/map"
    tools:context=".WriteNewHintActivity"
    android:name="com.google.android.gms.maps.SupportMapFragment" />
    <Button
        android:id="@+id/btn_set_current_loc"
        android:layout_marginTop="@dimen/new_hint_mapbtn_top"
        android:layout_marginLeft="@dimen/new_hint_mapbtn_left"
        android:layout_width="@dimen/new_hint_mapbtn_width"
        android:layout_height="@dimen/new_hint_mapbtn_height"
        android:background="@drawable/map_btn_mylocation"/>
</FrameLayout>
지나가는참새 (640 포인트) 님이 2016년 2월 23일 질문
지나가는참새님이 2016년 2월 23일 수정

1개의 답변

+1 추천
SupportMapFragment가 직접 해당 기능을 지원하지 않는다면 방법이 없을 겁니다.
익명사용자 님이 2016년 2월 23일 답변
...