티스토리 뷰

[Android Studio] 배경 그라데이션 효과 주기 안드로이드 스튜디오

 

1. 그라데이션 리소스파일 생성

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#ffa539"
        android:endColor="#ff8b00"
        android:angle="0"
        android:centerY="0" />
    <corners
        android:radius="2dp" />
</shape>

 

2. View 속성값 적용

 <View
        android:id="@+id/view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/color_gradient_primery"/>

 

댓글