본문 바로가기

안드로이드

셰이프 드로어블 - 그라디언트

반응형

프로젝트 창의 drawable 디렉토리에 새로 Drawable Resource File 생성

 

이름은 대충 back_drawable.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"
        ></gradient>

    <corners android:radius="2dp"></corners>

</shape>

 

startColor, centerColor, endColor에 지정해준 색상들을, 위쪽에서 아래쪽으로 색상이 바뀌는 그라데이션이 된다

 

 

 

컴포넌트 트리의 최상위 레이아웃을 선택하고 background 속성을 back_drawable.xml으로 해준다

반응형

'안드로이드' 카테고리의 다른 글

두 개의 이미지뷰에 이미지 번갈아 보여주기  (0) 2021.10.11
셰이프 드로어블 - 투명 배경 버튼  (0) 2021.10.08
셰이프 드로어블  (0) 2021.10.08
상태 드로어블  (0) 2021.10.08
스크롤뷰  (0) 2021.10.07