Android仿京东首页轮播文字效果
京东客户端的轮播文字效果:
本次要实现的只是后面滚动的文字(前面的用imageview或者textview实现即可),看一下实现的效果
实现思路
上图只是一个大概的思路,要实现还需要完善更多的细节,下面会一步步的来实现这个效果:
1.封装数据源:从图上可以看到,轮播的文字是分为两个部分的,暂且把它们分别叫做前缀和内容,而且实际的使用过程中点击轮播图肯定是需要跳转页面的,而且大部分应该是webview,不妨我们就设置点击时候需要获取的内容就是一个链接,那么数据源的结构就很明了了
创建adenity
类并完善一些基本的方法,代码如下
public class adenity { private string mfront ; //前面的文字 private string mback ; //后面的文字 private string murl ;//包含的链接 public adenity(string mfront, string mback,string murl) { this.mfront = mfront; this.mback = mback; this.murl = murl; } public string getmurl() { return murl; } public void setmurl(string murl) { this.murl = murl; } public string getmfront() { return mfront; } public void setmfront(string mfront) { this.mfront = mfront; } public string getmback() { return mback; } public void setmback(string mback) { this.mback = mback; } }
2.接下来应该是定制这个自定义view了,首先理一下思路,看一个构造图
实现这个自定义view的所有参数都在上表列出了,大部分参数很容易理解,个别参数加进去是很有必要的,比如说是否初始化进入文字的纵坐标,文字是否在移动中这两个参数,之后的内容会详细的叙述一下. 在动手绘制之前还得需要知道一点基础的知识,就是关于绘制文字的方法,里面有很多细节需要处理
方法都比较好理解,绘制指定字符串(可以指定范围)在坐标( x , y )
处,但是其中的x,y
并不是我们所理解的应该是文字左上角的坐标点.其中的x坐标是根据paint
的属性可变换的,默认的x是文字的左边坐标,如果paint
设置了paint.settextalign(paint.align.center)
;那就是字符的中心位置.y
坐标是文字的baseline
的y
坐标. 关于绘制文字的baseline:
用图来说话吧
图中蓝色的线即为baseline
,可以看出他既不是顶部坐标也不是底部坐标,那么当我们绘制文字的时候肯定是希望能把文字绘制在正中间.这时候就要引入paint.gettextbound()
方法了 gettextbounds(string text, int start, int end, rect bounds)
,传入一个rect
对象,调用此方法之后则会填充这个rect对象,而填充的内容就是所绘制的文字相对于baseline
的偏移坐标,将这个rect加上baseline
的坐标,绘制后是这样的:
但其实他的值只是(2,-25,76,3)
,是相对于baseline的位置,画个图会比较好理解
那么要将文字绘制在中间那么实际绘制baseline的坐标应该是组件的中心加上文字中心即图中框的中间坐标相对于baseline的偏移值">那么要将文字绘制在中间,那么实际绘制baseline的坐标应该是组件的中心,加上文字中心(即图中框的中间坐标)相对于baseline的偏移值
这张图中应该会好理解实际绘制文字的坐标与组件中心坐标的关系.关于偏移值的计算,按常规的几何计算方法,应该是组件的中心坐标+偏移值的绝对值==baseline坐标(即实际绘制的坐标),但是由于框的坐标值都是相对于baseline来计算的,top为负值,botton为正值,那么这个偏移值就可以直接用(top+bottom)/2来表示,没看懂的同学可以画个草图,用top=-25,bottom=3来算一下,看是否结果是一致的.
经过上面的理解,那我们来绘制正确绘制文字的方法也就确定了
已获得组件的高度int mheight , 文字外框rect bound的情况下
绘制文字在正中间
mheight / 2 - (bound.top + bound.bottom) / 2 //在纵坐标为my的地方绘制文字 //计算方式 //mheight /2 = my + (bound.top + bound.bottom) / 2 ;
文字滚动到最高点
my == 0 - bound.bottom //在纵坐标为my的地方绘制,此时文字刚好移动到最高点 //计算方式 //my + bound.bottom = 0 ;
文字滚动到最低点,刚好滚出组件
my = mheight - indexbound.top; //在纵坐标为my的地方绘制,此时文字刚好移动到最高点 //计算方式 //my + bound.top = mheight ;
知道了如何正确的绘制文字和边界情况的坐标判断,下面就到了绘制文字的步骤了
首先初始化数据,设置默认值
//初始化默认值 private void init() { mduration = 500; minterval = 1000; mindex = 0; mpaintfront = new paint(); mpaintfront.setantialias(true); mpaintfront.setdither(true); mpaintfront.settextsize(30); mpaintback = new paint(); mpaintback.setantialias(true); mpaintback.setdither(true); mpaintback.settextsize(30); }
前面的叙述中我们知道,刚开始进入的时候文字应该是位于组件的底部的,但是这个值是需要获取组件的高度和当前显示文字的情况下来判断的,所以应该放在ondraw内来初始化这个值,所以需要前面的是否初始化的属性,判断当my==0并且未初始化的时候给my赋值.
接下来就是ondraw内的处理
获取当前的数据
//获取当前的数据 adenity model = mtexts.get(mindex); string font = model.getmfront(); string back = model.getmback(); // 绘制前缀的外框 rect indexbound = new rect(); mpaintfront.gettextbounds(font, 0, font.length(), indexbound); //绘制内容的外框 rect contentbound = new rect(); mpaintback.gettextbounds(back, 0, back.length(), contentbound);
对my进行初始化
if (my == 0 && hasinit == false) { my = getmeasuredheight() - indexbound.top; hasinit = true; }
对边界情况的处理
/
/移动到最上面 if (my == 0 - indexbound.bottom) { log.i(tag, "ondraw: " + getmeasuredheight()); my = getmeasuredheight() - indexbound.top;//返回底部 mindex++;//换下一组数据 } //移动到中间 if (my == getmeasuredheight() / 2 - (indexbound.top + indexbound.bottom) / 2) { ismove = false;//停止移动 timer timer = new timer(); timer.schedule(new timertask() { @override public void run() { postinvalidate();//通知重绘 ismove = true;//设置移动为true } }, minterval);//停顿多少毫秒之后再次移动 } 移动的处理与数据源的处理 my -= 1;//每次只移动一个像素,尽量保证平滑显示 //循环使用数据 if (mindex == mtexts.size()) { mindex = 0; } //如果是处于移动状态时的,则延迟绘制 //计算公式为一个比例,一个时间间隔移动组件高度,则多少毫秒来移动1像素 if (ismove) { postinvalidatedelayed(mduration / getmeasuredheight()); } 至此对逻辑的处理就完成了,接下来要设置点击事件 public interface onclicklitener { public void onclick(string murl); } private onclicklitener onclicklitener; public void setonclicklitener(textviewad.onclicklitener onclicklitener) { this.onclicklitener = onclicklitener; } //重写ontouchevent事件,并且要返回true,表明当前的点击事件由这个组件自身来处理 @override public boolean ontouchevent(motionevent event) { int action = event.getaction(); switch (action) { case motionevent.action_down: //调用回调,将当前数据源的链接传出去 if (onclicklitener != null) { onclicklitener.onclick(mtexts.get(mindex).getmurl()); } break; } return true; } 暴露一些其他属性的设置方式 //设置数据源 public void setmtexts(list mtexts) { this.mtexts = mtexts; } //设置广告文字的停顿时间 public void setminterval(int minterval) { this.minterval = minterval; } //设置文字从出现到消失的时长 public void setmduration(int mduration) { this.mduration = mduration; } //设置前缀的文字颜色 public void setfrontcolor(int mfrontcolor) { mpaintfront.setcolor(mfrontcolor); } //设置正文内容的颜色 public void setbackcolor(int mbackcolor) { mpaintback.setcolor(mbackcolor); } 有兴趣的同学可以将这些属性设置到attrs.xml文件中然后就可以在布局文件中设置属性了,这里就不演示了,因为觉得每次copy这个view还得把xml文件也copy比较麻烦,毕竟as有自动补全,可以很方便的看到暴露在外面的方法.(个人感受而已). 贴一下完整的adtextview的代码,方便查看 package com.qiyuan.jindongshangcheng.view; import android.content.context; import android.graphics.canvas; import android.graphics.paint; import android.graphics.rect; import android.util.attributeset; import android.util.log; import android.view.motionevent; import android.widget.textview; import com.qiyuan.jindongshangcheng.enity.adenity; import java.util.list; import java.util.timer; import java.util.timertask; /** * created by huanghaojie on 2016/9/30. */ public class textviewad extends textview { private int mduration; //文字从出现到显示消失的时间 private int minterval; //文字停留在中间的时长切换的间隔 private list<adenity> mtexts; //显示文字的数据源 private int my = 0; //文字的y坐标 private int mindex = 0; //当前的数据下标 private paint mpaintback; //绘制内容的画笔 private paint mpaintfront; //绘制前缀的画笔 private boolean ismove = true; //文字是否移动 private string tag = "adtextview"; private boolean hasinit = false;//是否初始化刚进入时候文字的纵坐标 public interface onclicklitener { public void onclick(string murl); } private onclicklitener onclicklitener; public void setonclicklitener(textviewad.onclicklitener onclicklitener) { this.onclicklitener = onclicklitener; } public textviewad(context context) { this(context, null); } public textviewad(context context, attributeset attrs) { super(context, attrs); init(); } //重写ontouchevent事件,并且要返回true,表明当前的点击事件由这个组件自身来处理 @override public boolean ontouchevent(motionevent event) { int action = event.getaction(); switch (action) { case motionevent.action_down: //调用回调,将当前数据源的链接传出去 if (onclicklitener != null) { onclicklitener.onclick(mtexts.get(mindex).getmurl()); } break; } return true; } //设置数据源 public void setmtexts(list mtexts) { this.mtexts = mtexts; } //设置广告文字的停顿时间 public void setminterval(int minterval) { this.minterval = minterval; } //设置文字从出现到消失的时长 public void setmduration(int mduration) { this.mduration = mduration; } //设置前缀的文字颜色 public void setfrontcolor(int mfrontcolor) { mpaintfront.setcolor(mfrontcolor); } //设置正文内容的颜色 public void setbackcolor(int mbackcolor) { mpaintback.setcolor(mbackcolor); } //初始化默认值 private void init() { mduration = 500; minterval = 1000; mindex = 0; mpaintfront = new paint(); mpaintfront.setantialias(true); mpaintfront.setdither(true); mpaintfront.settextsize(30); mpaintback = new paint(); mpaintback.setantialias(true); mpaintback.setdither(true); mpaintback.settextsize(30); } @override protected void onsizechanged(int w, int h, int oldw, int oldh) { super.onsizechanged(w, h, oldw, oldh); log.i(tag, "onsizechanged: " + h); } @override protected void ondraw(canvas canvas) { if (mtexts != null) { log.i(tag, "ondraw: " + my); //获取当前的数据 adenity model = mtexts.get(mindex); string font = model.getmfront(); string back = model.getmback(); // 绘制前缀的外框 rect indexbound = new rect(); mpaintfront.gettextbounds(font, 0, font.length(), indexbound); //绘制内容的外框 rect contentbound = new rect(); mpaintback.gettextbounds(back, 0, back.length(), contentbound); //刚开始进入的时候文字应该是位于组件的底部的 ,但是这个值是需要获取组件的高度和当前显示文字的情况下来判断的, // 所以应该放在ondraw内来初始化这个值,所以需要前面的是否初始化的属性,判断当my==0并且未初始化的时候给my赋值. if (my == 0 && hasinit == false) { my = getmeasuredheight() - indexbound.top; hasinit = true; } //移动到最上面 if (my == 0 - indexbound.bottom) { log.i(tag, "ondraw: " + getmeasuredheight()); my = getmeasuredheight() - indexbound.top;//返回底部 mindex++;//换下一组数据 } canvas.drawtext(back, 0, back.length(), (indexbound.right - indexbound.left) + 20, my, mpaintback); canvas.drawtext(font, 0, font.length(), 10, my, mpaintfront); //移动到中间 if (my == getmeasuredheight() / 2 - (indexbound.top + indexbound.bottom) / 2) { ismove = false;//停止移动 timer timer = new timer(); timer.schedule(new timertask() { @override public void run() { postinvalidate();//通知重绘 ismove = true;//设置移动为true } }, minterval);//停顿多少毫秒之后再次移动 } //移动的处理与数据源的处理 my -= 1;//每次只移动一个像素,尽量保证平滑显示 //循环使用数据 if (mindex == mtexts.size()) { mindex = 0; } //如果是处于移动状态时的,则延迟绘制 //计算公式为一个比例,一个时间间隔移动组件高度,则多少毫秒来移动1像素 if (ismove) { postinvalidatedelayed(mduration / getmeasuredheight()); } } } } 怎么使用呢? 1,现在xml文件里引入这个自定义控件 <?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.qiyuan.jindongshangcheng.view.textviewad android:id="@+id/textad" android:layout_width="match_parent" android:layout_height="wrap_content" /> </linearlayout> 2.在mainactivity中使用 /** * created by huanghaojie on 2016/9/30. */ public class mainactivity extends activity { private textviewad textviewad; private list<adenity> mlist; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main4); textviewad = (textviewad) findviewbyid(r.id.textad); mlist = new arraylist<>(); for (int i = 0; i < 10; i++) { adenity adenity = new adenity("前缀" + i, "后缀" + i, "http://www.baidu.com"+i); mlist.add(adenity); } textviewad.setmtexts(mlist); textviewad.setfrontcolor(color.red); textviewad.setbackcolor(color.blue); textviewad.setmduration(1000); textviewad.setminterval(1000); textviewad.setonclicklitener(new textviewad.onclicklitener() { @override public void onclick(string murl) { toast.maketext(mainactivity.this,"点击了"+murl,toast.length_long).show(); } }); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。