本文实例为大家分享了AndroID TextVIEw实现跑马灯效果的具体代码,供大家参考,具体内容如下
当Layout中只有一个TextVIEw需要实现跑马灯效果时, *** 作如下。
在Layout的TextVIEw配置文件中增加
androID:ellipsize="marquee"
androID:focusable="true"
androID:focusableIntouchMode="true"
androID:singleline="true"
以上四条属性,即可实现跑马灯效果。
当有多个TextVIEw想实现跑马灯效果时,实现起来稍微复杂一些。
首先新建一个类,继承自TextVIEw。
package com.example.project1;import androID.content.Context;import androID.util.AttributeSet;import androID.vIEw.VIEwDeBUG.ExportedProperty;import androID.Widget.TextVIEw;public class MyTextVIEw extends TextVIEw{ public MyTextVIEw(Context context,AttributeSet attrs,int defStyle) { super(context,attrs,defStyle); // Todo auto-generated constructor stub } public MyTextVIEw(Context context,AttributeSet attrs) { super(context,attrs); // Todo auto-generated constructor stub } public MyTextVIEw(Context context) { super(context); // Todo auto-generated constructor stub } @OverrIDe public boolean isFocused() { // Todo auto-generatd method stub return true; }}
重写函数 isFocused(),使其始终return true。
将Layout文件中的TextVIEw修改为com.example.project1.MyTextVIEw,如下。
<com.example.project1.MyTextVIEw androID:ID="@+ID/textVIEw1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ellipsize="marquee" androID:focusable="true" androID:focusableIntouchMode="true" androID:singleline="true" androID:text="@string/longText" /> <com.example.project1.MyTextVIEw androID:ID="@+ID/textVIEw2" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ellipsize="marquee" androID:focusable="true" androID:focusableIntouchMode="true" androID:singleline="true" androID:text="@string/longText" />
此时两个TextVIEw都可呈现跑马灯效果。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android基于TextView实现跑马灯效果全部内容,希望文章能够帮你解决Android基于TextView实现跑马灯效果所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)