Android TextView 字体滚动效果
更新时间:2017年01月21日 09:00:54 投稿:lqh
这篇文章主要介绍了Android TextView 字体滚动效果的相关资料,需要的朋友可以参考下
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实现上下滚动的TextView
- android TextView不用ScrollViewe也可以滚动的方法
- Android中TextView实现垂直滚动和上下滚动效果
- Android TextView实现垂直滚动效果的方法
- Android编程实现TextView垂直自动滚动功能【附demo源码下载】
- Android中TextView实现超过固定行数显示“...展开全部”
- Android TextView显示html样式的文字
- Android实现TextView显示HTML加图片的方法
- Android开发实现TextView显示丰富的文本
- Android DrawableTextView图片文字居中显示实例
- Android开发中TextView文本过长滚动显示实现方法分析
相关文章
Android开发中DatePicker日期与时间控件实例代码
本文通过实例代码给大家介绍了Android开发中DatePicker日期与时间控件,代码简单易懂,非常不错,具有参考借鉴价值,需要的朋友可以参考下2017-08-08
Android Activity切换(跳转)时出现黑屏的解决方法 分享
Android Activity切换(跳转)时出现黑屏的解决方法 分享,需要的朋友可以参考一下2013-06-06
Android RecyclerView自由拖动item的实现代码
这篇文章主要介绍了Android RecyclerView自由拖动item的实现代码,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧2024-01-01


最新评论