本文实例讲述了AndroID编程实现自定义渐变颜色效果。分享给大家供大家参考,具体如下:
你是否已经厌恶了纯色的背景呢?那好,AndroID提供给程序员自定义渐变颜色的接口,让我们的界面炫起来吧。
xml定义渐变颜色
首先,你在drawable目录下写一个xml,代码如下
<?xml version="1.0" enCoding="utf-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:shape="rectangle" > <gradIEnt androID:angle="270" androID:endcolor="#000000" androID:startcolor="#ffffff" /> <corners androID:bottomLefTradius="5dip" androID:bottomrighTradius="5dip" androID:topLefTradius="5dip" androID:topRighTradius="5dip" /></shape>
shape 节点配置的是图形的形式,主要包括方形、圆形等,上边代码为方形,
gradIEnt 节点主要配置起点颜色、终点颜色及中间点的颜色、坐标、渐变效果(0,90,180从左到右渐变,270从上到下渐变)默认从左到右
padding 节点主要配置上下左右的间距
corners 节点配置四周园脚的半径
然后,你就可以随意在代码中或者xml布局中使用它了。
如此简单的配置,只要你知道颜色的rgb值,你就可以成为颜色达人。
代码定义渐变颜色
AndroID平台下实现渐变效果。在androID.graphics中我们可以找到有关GradIEnt字样的类,比如linearGradIEnt 线性渐变、RadialGradIEnt径向渐变和 角度渐变SweepGradIEnt 三种,他们的基类为androID.graphics.Shader。为了显示出效果,使用一个简单的例子来说明。
一、linearGradIEnt线性渐变
在androID平台中提供了两种重载方式来实例化该类分别为,他们的不同之处为参数中第一种方法可以用颜色数组,和位置来实现更细腻的过渡效果,比如颜色采样int[] colors数组中存放20种颜色,则渐变将会逐一处理。而第二种方法参数仅为起初颜色color0和最终颜色color1。
linearGradIEnt(float x0,float y0,float x1,float y1,int[] colors,float[] positions,Shader.TileMode tile)linearGradIEnt(float x0,int color0,int color1,Shader.TileMode tile)
使用实例如下:
Paint p=new Paint();linearGradIEnt lg=new linearGradIEnt(0,100,color.RED,color.BLUE,Shader.TileMode.MIRROR);
参数一为渐变起初点坐标x位置,参数二为y轴位置,参数三和四分辨对应渐变终点,最后参数为平铺方式,这里设置为镜像.
刚才AndroID开发网已经讲到GradIEnt是基于Shader类,所以我们通过Paint的setShader方法来设置这个渐变,代码如下:
p.setShader(lg);canvas.drawCicle(0,200,p); //参数3为画圆的半径,类型为float型。
二、 RadialGradIEnt镜像渐变
有了上面的基础,我们一起来了解下径向渐变。和上面参数唯一不同的是,径向渐变第三个参数是半径,其他的和线性渐变相同。
RadialGradIEnt(float x,float y,float radius,Shader.TileMode tile)RadialGradIEnt(float x,Shader.TileMode tile)
三、 SweepGradIEnt角度渐变
对于一些3D立体效果的渐变可以尝试用角度渐变来完成一个圆锥形,相对来说比上面更简单,前两个参数为中心点,然后通过载入的颜色来平均的渐变渲染。
SweepGradIEnt(float cx,float cy,float[] positions)
对于最后一个参数SDK上的描述为:
May be NulL. The relative position of each corresponding color in the colors array,beginning with 0 and ending with 1.0. If the values are not monotonic,the drawing may produce unexpected results. If positions is NulL,then the colors are automatically spaced evenly.
所以AndroID123建议使用下面的重载方法,本方法一般为NulL即可。
SweepGradIEnt(float cx,int color1)
或者直接创建一个drawable:
public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestwindowFeature(Window.FEATURE_NO_Title); //设置没标题 getwindow().setFlags(WindowManager.LayoutParams.FLAG_FulLSCREEN,//全屏 WindowManager.LayoutParams.FLAG_FulLSCREEN); setContentVIEw(R.layout.login);//登录界面 GradIEntDrawable grad = new GradIEntDrawable(//渐变色 OrIEntation.top_BottOM,new int[]{color.BLACK,color.WHITE} ); getwindow().setBackgroundDrawable(grad);//设置渐变颜色}
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android布局layout技巧总结》、《Android视图View技巧总结》、《Android编程之activity *** 作技巧总结》、《Android *** 作json格式数据技巧总结》、《Android资源 *** 作技巧汇总》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android编程实现自定义渐变颜色效果详解全部内容,希望文章能够帮你解决Android编程实现自定义渐变颜色效果详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)