1. drawable 폴더에 xml 파일 추가
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="@color/component_title"/>
<corners android:radius="10dp" />
<padding
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp"/>
</shape>
여기서 shape 태그에 oval, line으로 바꿀 수도 있다.
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
점선으로 사용하려면 <solid> 태그 대신에 <stroke>태그를 이용한다.
지정 속성은 dashWidth로 너비를 dashGap으로 점선 간격을 지정할 수 있다.
2. layout 에 background 속성으로 지정
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@drawable/layout_roundconer"
android:orientation="vertical" >
'Android' 카테고리의 다른 글
interface를 상수처럼 사용하기 (0) | 2013.05.09 |
---|---|
ViewFlipper 와 OnTouchListener (0) | 2013.05.09 |
StartActivityForResult 결과를 받을 수 있는 인텐트 실행 법 (0) | 2013.05.04 |
인트로 Intro 화면 만들기 (0) | 2013.05.04 |
TextView 줄임 표시 (0) | 2013.03.03 |
WRITTEN BY