https://github.com/lygttpod/AndroidCustomView/blob/master/app/src/main/java/com/allen/androidcustomview/widget/FadeInTextView.java

上述是自定义好的Textview,可以直接使用,具体如何实现,我们一起学习一下

  1. public class FadeInTextView extends TextView {
  2.  
  3. private Rect textRect = new Rect();
  4.  
  5. private StringBuffer stringBuffer = new StringBuffer();
  6.  
  7. private String[] arr;
  8.  
  9. private int textCount;
  10.  
  11. private int currentIndex = -1;
  12.  
  13. /**
  14. * 每个字出现的时间
  15. */
  16. private int duration = 300;
  17. private ValueAnimator textAnimation;
  18.  
  19. private TextAnimationListener textAnimationListener;
  20.  
  21. public FadeInTextView setTextAnimationListener(TextAnimationListener textAnimationListener) {
  22. this.textAnimationListener = textAnimationListener;
  23. return this;
  24. }
  25.  
  26. public FadeInTextView(Context context) {
  27. this(context, null);
  28. }
  29.  
  30. public FadeInTextView(Context context, @Nullable AttributeSet attrs) {
  31. super(context, attrs);
  32.  
  33. }
  34.  
  35. @Override
  36. protected void onDraw(final Canvas canvas) {
  37. super.onDraw(canvas);
  38. if (stringBuffer != null) {
  39. drawText(canvas, stringBuffer.toString());
  40. }
  41. }
  42.  
  43. /**
  44. * 绘制文字
  45. *
  46. * @param canvas 画布
  47. */
  48. private void drawText(Canvas canvas, String textString) {
  49. textRect.left = getPaddingLeft();
  50. textRect.top = getPaddingTop();
  51. textRect.right = getWidth() - getPaddingRight();
  52. textRect.bottom = getHeight() - getPaddingBottom();
  53. Paint.FontMetricsInt fontMetrics = getPaint().getFontMetricsInt();
  54. int baseline = (textRect.bottom + textRect.top - fontMetrics.bottom - fontMetrics.top) / 2;
  55. //文字绘制到整个布局的中心位置
  56. canvas.drawText(textString, getPaddingLeft(), baseline, getPaint());
  57. }
  58.  
  59. /**
  60. * 文字逐个显示动画 通过插值的方式改变数据源
  61. */
  62. private void initAnimation() {
  63.  
  64. //从0到textCount - 1 是设置从第一个字到最后一个字的变化因子
  65. textAnimation = ValueAnimator.ofInt(0, textCount - 1);
  66. //执行总时间就是每个字的时间乘以字数
  67. textAnimation.setDuration(textCount * duration);
  68. //匀速显示文字
  69. textAnimation.setInterpolator(new LinearInterpolator());
  70. textAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
  71. @Override
  72. public void onAnimationUpdate(ValueAnimator valueAnimator) {
  73. int index = (int) valueAnimator.getAnimatedValue();
  74. //过滤去重,保证每个字只重绘一次
  75. if (currentIndex != index) {
  76. stringBuffer.append(arr[index]);
  77. currentIndex = index;
  78. //所有文字都显示完成之后进度回调结束动画
  79. if (currentIndex == (textCount - 1)) {
  80. if (textAnimationListener != null) {
  81. textAnimationListener.animationFinish();
  82. }
  83. }
  84.  
  85. invalidate();
  86. }
  87. }
  88. });
  89. }
  90.  
  91. /**
  92. * 设置逐渐显示的字符串
  93. *
  94. * @param textString
  95. * @return
  96. */
  97. public FadeInTextView setTextString(String textString) {
  98. if (textString != null) {
  99. //总字数
  100. textCount = textString.length();
  101. //存放单个字的数组
  102. arr = new String[textCount];
  103. for (int i = 0; i < textCount; i++) {
  104. arr[i] = textString.substring(i, i + 1);
  105. }
  106. initAnimation();
  107. }
  108.  
  109. return this;
  110. }
  111.  
  112. /**
  113. * 开启动画
  114. *
  115. * @return
  116. */
  117. public FadeInTextView startFadeInAnimation() {
  118. if (textAnimation != null) {
  119. stringBuffer.setLength(0);
  120. currentIndex = -1;
  121. textAnimation.start();
  122. }
  123. return this;
  124. }
  125.  
  126. /**
  127. * 停止动画
  128. *
  129. * @return
  130. */
  131. public FadeInTextView stopFadeInAnimation() {
  132. if (textAnimation != null) {
  133. textAnimation.end();
  134. }
  135. return this;
  136. }
  137.  
  138. /**
  139. * 回调接口
  140. */
  141. public interface TextAnimationListener {
  142. void animationFinish();
  143. }
  144. }
  145.  
  146. Contact GitHub API Training Shop Blog About
  147.  
  148. © 2017 GitHub, Inc. Terms Privacy Security Status Help

在此说明,俺们也是看大神写的代码学习学习,并非自己写的,在此是供大家学习!

TextView实现打印机效果 ,字符串逐字显示的更多相关文章

  1. 《Python CookBook2》 第一章 文本 - 去字符串两端的空格 && 合并字符串 && 将字符串逐字符或者逐词反转

    去字符串两端的空格 任务: 获得一个开头和末尾都没有多余空格的字符串. 解决方案: 字符串对象的lstrip.rstrip和strip 方法正是为这种任务而设计的.这几个方法都不需要参数,它们会直接返 ...

  2. element-ui select组件中复选时以字符串形式显示

    我使用的element-ui的版本是1.4.13. 如上图所示,使用el-select组件,要实现可搜索.可复选.可创建条目时,展示样式是如上图所示,输入框的高度会撑开,影响页面布局,按照产品的需求, ...

  3. SpannableString实现TextView的链接效果

    SpannableString实现TextView的链接效果 一.简介 TextView使用SpannableString设置复合文本TextView通常用来显示普通文本,但是有时候需要对其中某些文本 ...

  4. Android源码分析(十二)-----Android源码中如何自定义TextView实现滚动效果

    一:如何自定义TextView实现滚动效果 继承TextView基类 重写构造方法 修改isFocused()方法,获取焦点. /* * Copyright (C) 2015 The Android ...

  5. jQuery 效果 —— 隐藏和显示

    jQuery 效果 -- 隐藏和显示 1.隐藏和显示 (1)在jQuery中我们可以使用hide()和show()分别隐藏和显示HTML元素: //隐藏元素 $("button") ...

  6. TextView drawablePadding没有效果

    1.当TextView 设置宽度设置为match_parent的时候 TextView drawablePadding没有效果 ,字设置了center位置,但是和左边的图片离开很远 2.当TextVi ...

  7. Function:html结构转字符串形式显示

    //Html结构转字符串形式显示 支持<br>换行 function ToHtmlString(htmlStr) { return toTXT(htmlStr).replace(/\&am ...

  8. 查找常用字符(给定仅有小写字母组成的字符串数组 A,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表。例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 3 次。)

    给定仅有小写字母组成的字符串数组 A,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表. 例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 ...

  9. android一个倾斜的TextView,适用于标签效果

    描述: android一个倾斜的TextView,适用于标签效果 应用截图: 使用说明: <com.haozhang.lib.SlantedTextView android:layout_wid ...

随机推荐

  1. 【GitHub】README.md文件中 markdown语法 插入超链接

    语法: [Spring-data-jpa 查询 复杂查询陆续完善中](http://www.cnblogs.com/sxdcgaq8080/p/7894828.html) [文本](URL) 效果:

  2. django开发环境部署之pip、virtualenv、virtualenvwrapper

    step1:安装pip 在python中可以使用easy_install和pip安装python拓展但推荐使用pip Don't use easy_install, unless you like s ...

  3. JStorm的搭建文档

    1.下载jstorm的jar包 https://github.com/alibaba/jstorm/releases 2.解压jstorm的包 tar -xvf jstorm-2.4.0.tgz mv ...

  4. [转载]Install Opera 12.16 Web Browser in CentOS/RHEL and Fedora

    FROM: http://tecadmin.net/install-opera-web-browser-in-centos-rhel-fedora/ Opera is an modern web br ...

  5. WEB接口测试之Jmeter接口测试自动化 (四)(持续构建)

    转载http://www.cnblogs.com/chengtch/p/6145867.html  Jmeter是压力测试.接口测试工具,Ant是基于Java的构建工具,具有跨平台的作用,jenkin ...

  6. JAVA Eclipse 启动 Eclipse 弹出“Failed to load the JNI shared library jvm_dll”怎么办

    原因1:给定目录下jvm.dll不存在. 对策:(1)重新安装jre或者jdk并配置好环境变量.(2)copy一个jvm.dll放在该目录下. 原因2:eclipse的版本与jre或者jdk版本不一致 ...

  7. javascript - 封装ajax

    封装,使用有示例. // 封装示例: function ajax(url, method, params, done) { var xhr = null; method = method.toUppe ...

  8. MySQL的四种变量类型

    一.全局变量在系统运行期间动态更改其参数,重启后失效.SET GLOABL var=XXX;SET @@global.var=XXX;以上两种方式等效 查看系统的全局变量show global var ...

  9. ionic准备之angular基础——dom操作相关(6)

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  10. linux驱动current,引用当前进程,及task_struct(转)

    尽管内核模块不象应用程序一样顺序执行, 内核做的大部分动作是代表一个特定进程的. 内核代码可以引用当前进程, 通过存取全局项 current, 它在 <asm/current.h> 中定义 ...