res/drawable에 com_corner_ round.xml만들고
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#99FFFFFF"/>
<corners android:radius="15dip"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
적용할 레이아웃의 백그라운드를 지정
android:background="@drawable/com_rounded_corner"
끝~!
'자료' 카테고리의 다른 글
URL주소의 이미지를 Bitmap으로 (1) | 2011.07.13 |
---|---|
assets 파일을 특정 폴더에 복사하기 (0) | 2011.06.24 |
Failed to install ~timeout (0) | 2011.06.15 |
로그인시 아이디 저장 기능(Preferences) (1) | 2011.06.14 |
style.xml 예제1 (0) | 2011.06.14 |