android背景颜色渐变

来源:互联网 发布:js上下移动div 编辑:程序博客网 时间:2024/05/16 06:02

使用XML的方式为背景添加渐变的效果
首先,在res/Drawable 文件夹里面添加一个jbshape.xml文件,然后写入如下代码:

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" >    <gradient        android:angle="270"        android:centerColor="#00FFFF"        android:centerX="0.5"        android:centerY="0.5"        android:endColor="#666666"        android:startColor="#0099FF" />    <padding        android:bottom="7dp"        android:left="7dp"        android:right="7dp"        android:top="7dp" />    <corners android:radius="4dp" /></shape> 


shape 节点配置的是图形的形式,主要包括方形、圆形等,上边代码为方形,

在这里要注意android:type="radial"类型的使用会有不同的效果

gradient 节点主要配置起点颜色、终点颜色及中间点的颜色、坐标、渐变效果(0,90,180从左到右渐变,270从上到下渐变)默认从左到右
padding 节点主要配置上下左右的间距

corners 节点配置四周园脚的半径


padding的意思是,该背景里面的内容和背景四周的距离

实现这个效果,需要定一个title.xml 内容如下:

<?xml version=”1.0″ encoding=”UTF-8″?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
       android:orientation=”vertical”
       android:layout_width=”fill_parent”
       android:layout_height=”fill_parent”
       android:background=”@drawable/jbshape”

android:paddingLeft=”0px”>


0 0
原创粉丝点击