资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Android中怎么通过自定义View实现弹幕效果

Android中怎么通过自定义View实现弹幕效果,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

10年积累的网站设计、做网站经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有鄂伦春免费网站建设让你可以放心的选择与我们合作。

1、自定义Textitem类表示弹幕的信息2、自定义view继承view,使用ArrayList保存每条Textitem3、随机生成坐标点绘制每条TextItem,不断变换Text的横坐标实现弹幕的滚动

首先创建弹幕类,弹幕包括坐标,颜色,滚动速度,以及文字内容:

public class Textitem { private String content; private float fx; private float fy; private float perstep; private int textcolor;  public Textitem(String content,float fx,float fy,float perstep,int textcolor){  this.content = content;  this.fx = fx;  this.fy = fy;  this.perstep = perstep;  this.textcolor = textcolor; }  public String getContent(){  return content; }  public void setContent(String content){  this.content = content; }  public int getTextcolor(){  return textcolor; }  public void setTextcolor(int textcolor){  this.textcolor = textcolor; }  public float getFx(){   return fx; }  public void setFx(float fx){  this.fx = fx; }  public float getFy(){  return fy; }  public void setFy(float fy){  this.fy = fy; }  public float getPerstep(){  return perstep; }  public void setPerstep(){  fx -= perstep; }}

接下来自定义View,弹幕横坐标不断变换,需要实现定时刷新界面,重新绘制text。所以实现了Runable接口,在构造方法中开启线程,不断循环,每600毫秒刷新界面:

public class barrageview extends View implements Runnable{  private List items = new ArrayList<>(); Random random = new Random(); private Paint paint;  public barrageview(Context context) {  super(context);  initpaint();  new Thread(this).start(); }  public barrageview(Context context, AttributeSet attrs) {  super(context, attrs);  initpaint();  new Thread(this).start(); }  public barrageview(Context context, AttributeSet attrs, int defStyleAttr) {  super(context, attrs, defStyleAttr);  initpaint();  new Thread(this).start(); }   public void addTextitem(String content){  float x = random.nextFloat()*getWidth();  float y = Math.abs(random.nextFloat()*(getHeight()-50))+40;  float step = random.nextFloat()*50;  int r = random.nextInt(255);  int g = random.nextInt(255);  int b = random.nextInt(255);  Textitem item = new Textitem(content,x,y,step, Color.rgb(r,g,b));  items.add(item); }  public void initpaint(){  paint = new TextPaint(Paint.ANTI_ALIAS_FLAG);  paint.setColor(Color.RED);  paint.setTextSize(30); }  @Override public void draw(Canvas canvas) {  super.draw(canvas);  for(Textitem item:items){   paint.setColor(item.getTextcolor());   canvas.drawText(item.getContent(),item.getFx(),item.getFy(),paint);  } }  @Override public void run() {  while(true){   try{    Thread.sleep(600);    for(Textitem item:items){     item.setPerstep();    }    postInvalidate();   } catch (InterruptedException e){    e.printStackTrace();   }  } }}

弹幕VIew就是不断从ArrayList中获取弹幕进行绘制,由于在其他线程进行刷新,所以使用postInvalidate进行重绘。

由于只是实现demo,很多问题没有考虑,存在问题:

弹幕离开屏幕后没有进行清除,使得ArrayList不断扩大,可以进行一个判断,若Textitem的绘制区域不在屏幕内则删掉此item弹幕若没有交互需求,可以使用Surfaceview进行绘制,SurfaceView可以在子线程更新UI,多缓存机制也可以避免画面跳动另外注意下自定义View的构造函数的调用时机:

public View(Context context)是在java代码创建视图直接通过new方法创建的时候被调用,public View(Context context, Attributeset attrs)是在xml创建但是没有指定style的时候被调用public View(Context Context,AttributeSet attrs, int defStyle)给View提供一个基本的style,没有对View设置属性就使用style中的属性

看完上述内容,你们掌握Android中怎么通过自定义View实现弹幕效果的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!


分享标题:Android中怎么通过自定义View实现弹幕效果
当前网址:http://cdkjz.cn/article/jechpc.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220