Android背景漸變色(shape,gradient)

Android設置背景色能夠經過在res/drawable裏定義一個xml,以下:android

[代碼]xml代碼:

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <gradient
            android:startColor="#FFF"
            android:endColor="#000"
            android:angle="45" />
    </shape>spa

shape是用來定義形狀的,gradient定義該形狀裏面爲漸變色填充,startColor起始顏色,endColor結束顏色,angle表示方向角度。當angle=0時,漸變色是從左向右。 而後逆時針方向轉,當angle=90時爲從下往上。xml

相關文章
相關標籤/搜索