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

배경 위에 DatePicker 넣을 때 깨짐 현상

0 추천

안녕하세요, 개덩이입니다..

DatePicker를 추가했는데, 아래와 같이 날짜 양 옆의 배경이 깨져나옵니다.

XML을 별 다른 거 없습니다..

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/color_000000_a50" >

    <LinearLayout
        android:id="@+id/dpLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@drawable/cafe_pop_bg_box08"
        android:gravity="center" >

        <DatePicker
            android:id="@+id/dpDate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

</RelativeLayout>

 

어떤 설정을 더 해 줘야 하는지 알려주시면 감사하겠습니다.

개덩이 (160 포인트) 님이 2013년 4월 1일 질문

1개의 답변

0 추천
App을 지웠다가 다시 설치하면 됨 -_-
개덩이 (160 포인트) 님이 2013년 4월 1일 답변
...