출처 - http://promobile.tistory.com/193
- <shape>
형태 모형은 이미지 처럼 res/drawable/ 폴더 내 XML 문서로 제공된다. 자바프로그램에서 형태 모형을 참조하는 방법은 R.drawable.filename 으로 사용한다.
- 사각형
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@color/white"/>
</shape>
- 타원
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" >
<solid android:color="@color/white"/>
</shape>
- 직선
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
<stroke android:width="2dp" android:color="@color/white"/>
</shape>
- 링
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring">
<solid android:color="@color/white"/>
</shape>
- 디폴트 모형
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white"/>
</shape>
'개발 > 안드로이드' 카테고리의 다른 글
안드로이드 Notification (안드로이드 알림) (0) | 2013.11.13 |
---|---|
Google Expansion File 설명(확장 파일) (0) | 2013.11.12 |
TextWatcher 설명 (0) | 2013.10.09 |
하나의 TextView에서 여러가지 글자색과 스타일 사용하기 (0) | 2013.07.24 |
Android property animation (0) | 2013.06.03 |
댓글