Android TextView跑马灯效果实现方法
程序员文章站
2024-02-18 09:10:16
本文实例讲述了android textview跑马灯效果实现方法。分享给大家供大家参考,具体如下:
public class mytextview extends...
本文实例讲述了android textview跑马灯效果实现方法。分享给大家供大家参考,具体如下:
public class mytextview extends textview{ public mytextview(context context, attributeset attrs) { super(context, attrs); // todo auto-generated constructor stub } public mytextview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); // todo auto-generated constructor stub } public mytextview(context context) { super(context); // todo auto-generated constructor stub } @override public boolean isfocused() { // todo auto-generated method stub return true; //must be return true; } }
在xml文件中:
<packagename.mytextview android:id="@+id/my_textview" android:layout_width="400px" android:layout_height="35px" android:singleline="true" android:ellipsize="marquee" android:marqueerepeatlimit="marquee_forever" android:textsize="22sp"/>
更多关于android控件相关内容感兴趣的读者可查看本站专题:《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。
上一篇: 利用Jasypt如何对Spring Boot配置文件加密
下一篇: java实现 二叉搜索树功能