欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android中實(shí)現(xiàn)背景圖片顏色漸變方法

 更新時(shí)間:2015年05月20日 10:10:57   投稿:junjie  
這篇文章主要介紹了android中實(shí)現(xiàn)背景圖片顏色漸變方法,本文直接使用配置文件實(shí)現(xiàn)了這個(gè)效果,需要的朋友可以參考下

常用,記錄一下。
效果圖:


首先新建xml文件  bg_gradient.xml

復(fù)制代碼 代碼如下:

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
 
    <gradient 
        android:startColor="#55FF0000"  
        android:centerColor="#99A73C3C" 
        android:endColor="#99000000" 
        android:angle="270" 
        /> 
 
    <corners android:radius="0dip" /> 
 
</shape> 

在布局文件里面引用

復(fù)制代碼 代碼如下:

android:background="@drawable/bg_gradient"

相關(guān)文章

最新評(píng)論