티스토리 뷰

공부/Android

배경 그라데이션

데자와 맛있다 2022. 11. 2. 23:55

drawable에 아래 xml파일을 넣는다

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#FFFFFF"
        android:centerColor="#F1FBFF"
        android:endColor="#8EC8FB"
        android:angle="90"
       />
    <corners
        android:radius="2dp" />
</shape>

아래처럼 그라데이션 배경을 적용하고 싶은 xml 에 android:background="@drawable/그라데이션파일명" 하면된다

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   android:background="@drawable/login_background"
    android:orientation="vertical"
    >
    ...(생략)
</LinearLayout>

 

결과화면(그라데이션 말고 다른 요소들은 내가 넣은것)

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2024/10   »
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 31
글 보관함