- <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>
[Android]XML 스타일 문자 (0) | 2013.04.21 |
---|---|
[Android]상태 리스트 모형 (0) | 2013.04.20 |
[Android]비트맵 모형 (0) | 2013.04.16 |
[Android]자동완성텍스트뷰 (0) | 2013.04.08 |
[Android]그리드뷰 (0) | 2013.04.07 |
댓글 영역