Android TextView 字体滚动效果
投稿: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文本过长滚动显示实现方法分析