티스토리 뷰
쉐이프 드로어블 : 간단히 말해 XML로 도형을 그릴 수 있도록 하는 것
/res/drawable 폴더 안에 XML 파일을 만들고 최상위 태그를 <shape>로 바꾸면 도형 하나를 정의할 수 있다.
- <shape>의 속성 ) rectangle, oval, line, ring 등
- <stroke> : shape 태그 안에 넣어서 테두리 선의 속성 지정
- <solid> : 도형의 안쪽 채울 때
- <gradient> : 배경 그라데이션 주기
<layer-list> : 하나의 XML 파일에 여러 그래픽 넣기
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#4CAF50"
android:orientation="vertical">
<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/goodplace" />
<View
android:id="@+id/button2"
android:layout_width="200dp"
android:layout_height="120dp"
android:background="@drawable/rect_shape"
/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/thumbnail_base">
</FrameLayout>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/linear_border"
android:text="Button" />
</LinearLayout>
linear_border.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke android:width="1dp" android:color="#BE55DA" />
<solid android:color="#00000000" />
</shape>
</item>
<item android:top="1dp" android:bottom="1dp" android:right="1dp" android:left="1dp">
<shape android:shape="rectangle">
<stroke android:width="1dp" android:color="#BE55DA" />
<solid android:color="#00000000"/>
</shape>
</item>
</layer-list>
thumbnail_base.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#7288DB"
android:centerColor="#3250B4"
android:endColor="#254095"
android:angle="90"
android:centerY="0.5"
/>
<corners android:radius="2dp"/>
</shape>
rect_shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<size android:width="200dp" android:height="120dp"/>
<stroke android:width="1dp" android:color="#0000ff"/>
<solid android:color="#aaddff" />
<padding android:bottom="1dp" />
</shape>
'Android' 카테고리의 다른 글
이벤트 처리 예시 (터치 리스너, 키 이벤트, 제스처 디텍터) (0) | 2020.03.22 |
---|---|
안드로이드 테이블 레이아웃 예시 (0) | 2020.03.22 |
안드로이드에서 카카오톡 앱 열기 (0) | 2020.03.22 |
스크롤뷰 ScrollView 안의 LinearLayout (0) | 2020.03.22 |
상태 드로어블 예제 (0) | 2020.03.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 전화연결하기
- CaseIterable
- 액션바
- 전화걸기연결
- subscript
- 어댑터
- 알림대화상자
- swift
- 쉐이프드로어블
- 부가데이터
- 안드로이드
- prepareforreuse
- 비트맵버튼
- 제스처디텍터
- 카카오톡열기
- 인플레이터
- 터치리스너
- allcases
- 프래그먼트매니저
- 뷰페이저
- ios
- 다이얼연결
- 상태드로어블
- objc
- 데이터
- 페이저타이틀스트립
- 프래그먼트
- Objective-C
- 표현패턴
- 스낵바설정
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함