Android编程实现TextView垂直自动滚动功能【附demo源码下载】

Android编程实现TextView垂直自动滚动功能【附demo源码下载】,第1张

概述本文实例讲述了Android编程实现TextView垂直自动滚动功能。分享给大家供大家参考,具体如下:

本文实例讲述了AndroID编程实现TextVIEw垂直自动滚动功能。分享给大家供大家参考,具体如下:

在做androID 应用的开发的时候,横向滚动或者要做出跑马灯的效果很简单,textvIEw本身的属性就支持,只要设置准确就会滚动,开发起来比较简单,但是textvIEw 不支持垂直滚动,那么垂直滚动就需要自己来实现了,很多网友提供的垂直滚 动方案都是千篇一律,使用ScrollVIEw来进行滚动,但是都不完美,做起来有些别扭。有一位网友给出的歌词的滚动思路明确,能从根本上解决问题,因此我实现的这个滚动是在这位网友的基础上实现,封装了一个VIEw,vIEw继承自TextVIEw。先看看实现的效果:

实现图中效果的关键点是:

1、重写onDrow方法,计算每次的滚动的距离。
2、计算vIEw的Y轴的重点,让当前显示的处于高亮显示状态。
3、定时的刷新VIEw使其界面不断的刷先,出现滚动的效果。
4、实现数据结构,将数据传给vIEw。

下面看看主要代码:

1、创建一个类继承TextVIEw

 /** * @author xushilin * * 垂直滚动的TextVIEw Widget */public class VerticalScrollTextVIEw extends TextVIEw

2、实现构造函数:

 public VerticalScrollTextVIEw(Context context) {  super(context);  init(); } public VerticalScrollTextVIEw(Context context,AttributeSet attr) {  super(context,attr);  init(); } public VerticalScrollTextVIEw(Context context,AttributeSet attr,int i) {  super(context,attr,i);  init(); } private voID init() {  setFocusable(true);  //这里主要处理如果没有传入内容显示的默认值  if(List==null){   List=new ArrayList<Notice>();   Notice sen=new Notice(0,"暂时没有通知公告");   List.add(0,sen);  }  //普通文字的字号,以及画笔颜色的设置  mPaint = new Paint();  mPaint.setAntiAlias(true);  mPaint.setTextSize(16);  mPaint.setcolor(color.BLACK);  mPaint.setTypeface(Typeface.serif);  //高亮文字的字号,以及画笔颜色的设置  mPathPaint = new Paint();  mPathPaint.setAntiAlias(true);  mPathPaint.setcolor(color.RED);  mPathPaint.setTextSize(16);  mPathPaint.setTypeface(Typeface.SANS_serif); }

3、从写onDraw方法,并计算文字的行距,并且将将普通文字和高亮文字,在这个方法中绘制出来

 protected voID onDraw(Canvas canvas) {  super.onDraw(canvas);  canvas.drawcolor(0xEFeffff);  Paint p = mPaint;  Paint p2 = mPathPaint;  p.setTextAlign(Paint.Align.CENTER);  if (index == -1)   return;  p2.setTextAlign(Paint.Align.CENTER);   canvas.drawText(List.get(index).getname(),mX,mIDdleY,p2);  float tempY = mIDdleY;   for (int i = index - 1; i >= 0; i--) {   tempY = tempY - DY;   if (tempY < 0) {    break;   }   canvas.drawText(List.get(i).getname(),tempY,p);  }  tempY = mIDdleY;   for (int i = index + 1; i < List.size(); i++) {   tempY = tempY + DY;   if (tempY > mY) {    break;   }   canvas.drawText(List.get(i).getname(),p);  } }

4、计算Y轴中值以及更新索引

 protected voID onSizeChanged(int w,int h,int ow,int oh) {  super.onSizeChanged(w,h,ow,oh);  mX = w * 0.5f;  mY = h;  mIDdleY = h * 0.5f; }  private long updateIndex(int index) {  if (index == -1)   return -1;  this.index=index;  return index; }

5、定时更新vIEw,并将接口暴露给客户程序调用。

 public voID updateUI(){  new Thread(new updateThread()).start(); }  class updateThread implements Runnable {  long time = 1000;  int i=0;  public voID run() {   while (true) {    long sleeptime = updateIndex(i);    time += sleeptime;    mHandler.post(mUpdateResults);    if (sleeptime == -1)     return;    try {     Thread.sleep(time);     i++;     if(i==getList().size())      i=0;    } catch (InterruptedException e) {     e.printstacktrace();    }   }  } } Handler mHandler = new Handler(); Runnable mUpdateResults = new Runnable() {  public voID run() {   invalIDate();  } };

6、xml布局文件中调用:

<?xml version="1.0" enCoding="utf-8"?><!-- Demonstrates scrolling with a ScrollVIEw. --><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:orIEntation="vertical"> <com.demo.xsl.text.SampleVIEw androID:ID="@+ID/sampleVIEw1" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="@drawable/selector" /></linearLayout>

7、java代码中调用,传递数据:

package com.demo.xsl.text;import java.util.ArrayList;import java.util.List;import androID.app.Activity;import androID.os.Bundle;import androID.os.Handler; public class VerticalScrollTextActivity extends Activity {  SampleVIEw mSampleVIEw; @OverrIDe public voID onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentVIEw(R.layout.main);  mSampleVIEw = (SampleVIEw) findVIEwByID(R.ID.sampleVIEw1);  List lst=new ArrayList<Sentence>();  for(int i=0;i<30;i++){   if(i%2==0){    Sentence sen=new Sentence(i,i+"、金球奖三甲揭晓 C罗梅西哈维入围 ");    lst.add(i,sen);   }else{    Sentence sen=new Sentence(i,i+"、公牛欲用三大主力换魔兽????");    lst.add(i,sen);   }  }  //给VIEw传递数据  mSampleVIEw.setList(lst);  //更新VIEw  mSampleVIEw.updateUI(); }}

demo源码点击此处本站下载

更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android Service组件使用技巧总结》、《Android编程之activity *** 作技巧总结》、《Android资源 *** 作技巧汇总》、《Android文件 *** 作技巧汇总》、《Android *** 作SQLite数据库技巧总结》、《Android *** 作json格式数据技巧总结》、《Android数据库 *** 作技巧总结》、《Android开发入门与进阶教程》、《Android视图View技巧总结》及《Android控件用法总结》

希望本文所述对大家AndroID程序设计有所帮助。

总结

以上是内存溢出为你收集整理的Android编程实现TextView垂直自动滚动功能【附demo源码下载】全部内容,希望文章能够帮你解决Android编程实现TextView垂直自动滚动功能【附demo源码下载】所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146905.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存