Android TextView 字体滚动效果
程序员文章站
2024-02-20 14:26:04
android textview 字体滚动效果
实例代码:
package com.godinsec.seland.ui.tools;
import...
android textview 字体滚动效果
实例代码:
package com.godinsec.seland.ui.tools; import android.content.context; import android.text.textutils.truncateat; import android.util.attributeset; import android.widget.textview; public class marquetextview extends textview { public marquetextview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); init(context); } public marquetextview(context context, attributeset attrs) { super(context, attrs); init(context); } public marquetextview(context context) { super(context); init(context); } private void init(context context) { setellipsize(truncateat.marquee) ; } @override public boolean isfocused() { return true; } }
android xml:
<com.godinsec.seland.ui.tools.marquetextview android:id="@+id/tv_attention_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_weight="1" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:marqueerepeatlimit="marquee_forever" android:singleline="true" android:text="xxxxxxxxxxxxxxxxxx" android:textcolor="@color/textcolor_black_b2" android:textsize="@dimen/text_sp_s3" />
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
Android TextView 字体滚动效果
-
Android自定义View实现闪耀字体效果
-
Android TextView 设置字体大小的方法
-
Android TextView跑马灯效果实现方法
-
Android使用selector修改TextView中字体颜色和背景色的方法
-
Android仿微信朋友圈实现滚动条下拉反弹效果
-
Android TextView实现跑马灯效果的方法
-
Android编程实现自动调整TextView字体大小以适应文字长度的方法
-
Android RichText 让Textview轻松的支持富文本(图像ImageSpan、点击效果等等类似QQ微信聊天)
-
Android TextView 字体滚动效果