# 개발환경
tool : android studio 4.0 os : windows 10 pro 64-bit |
# 방법
- project > app > res > drawable
- 우측 마우스 클릭 > New > Drawable Resource File
- File name 입력 후 그대로 OK
- 코드 수정
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="270"
android:centerY="0.9"
android:endColor="#E2007B"
android:startColor="#FFFFFF"
android:type="linear" />
<corners android:radius="2dp" />
</shape>
1. selector 태그를 shape 태그로 수정
2. gradient 태그 및 속성 추가
# 결과
- 속성과 사용방법에 대한 docs 링크
https://developer.android.com/reference/android/graphics/drawable/GradientDrawable
'LANGUAGE > Kotlin' 카테고리의 다른 글
[Kotlin] 상단바(actionBar), 상태바(statusBar) (0) | 2020.06.26 |
---|---|
[Kotlin] button action > listener, onClick (0) | 2020.06.26 |
[Kotlin] round Button (gradient) (0) | 2020.06.26 |
[Kotlin] LinearLayout / RelativeLayout / ConstraintLayout (0) | 2020.06.25 |
[Kotlin] Parameter Hints 설정, android studio (0) | 2020.06.21 |