前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >android之自定义渐变颜色(二)

android之自定义渐变颜色(二)

作者头像
forrestlin
发布2018-05-23 17:30:15
1.2K0
发布2018-05-23 17:30:15
举报
文章被收录于专栏:蜉蝣禅修之道蜉蝣禅修之道

在android之自定义渐变颜色(一)中我们已经学到如何在xml定义渐变颜色,今天我们来学学如何用代码定义渐变颜色

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, float y0, float x1, float y1, int color0, int color1, Shader.TileMode tile)

使用实例如下: Paint p=new Paint(); LinearGradient lg=new LinearGradient(0,0,100,100,Color.RED,Color.BLUE,Shader.TileMode.MIRROR);  //

参数一为渐变起初点坐标x位置,参数二为y轴位置,参数三和四分辨对应渐变终点,最后参数为平铺方式,这里设置为镜像.

刚才Android开发网已经讲到Gradient是基于Shader类,所以我们通过Paint的setShader方法来设置这个渐变,代码

如下: p.setShader(lg); canvas.drawCicle(0,0,200,p); //参数3为画圆的半径,类型为float型。

二、 RadialGradient镜像渐变

有了上面的基础,我们一起来了解下径向渐变。和上面参数唯一不同的是,径向渐变第三个参数是半径,其他的和线性渐变

相同。

RadialGradient(float x, float y, float radius, int[] colors, float[] positions, Shader.TileMode tile)  RadialGradient(float x, float y, float radius, int color0, int color1, Shader.TileMode tile)

三、 SweepGradient角度渐变

对于一些3D立体效果的渐变可以尝试用角度渐变来完成一个圆锥形,相对来说比上面更简单,前两个参数为中心点,然后通过载入的颜色来平均的渐变渲染。

SweepGradient(float cx, float cy, int[] colors, 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, float cy, int color0, int color1)

或者直接创建一个drawable:

Java代码  

  1. <span style="font-size: small;"> public void onCreate(Bundle savedInstanceState) {  
  2. super.onCreate(savedInstanceState);  
  3.         requestWindowFeature(Window.FEATURE_NO_TITLE);  //设置没标题
  4.         getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN ,  //全屏
  5.                       WindowManager.LayoutParams.FLAG_FULLSCREEN);        
  6.         setContentView(R.layout.login);//登录界面
  7.         GradientDrawable grad = new GradientDrawable(//渐变色
  8.             Orientation.TOP_BOTTOM,  
  9. new int[]{Color.BLACK, Color.WHITE}  
  10.         );  
  11.         getWindow().setBackgroundDrawable(grad);//设置渐变颜色
  12.     }</span>  
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2012年08月20日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档