Android利用TextView制作跑马灯该效果
Posted 故意的是吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android利用TextView制作跑马灯该效果相关的知识,希望对你有一定的参考价值。
android:singleLine="true" 强制文本只能单行显示,但会在最后显示省略号(···) TextView省略文字显示 android:ellipsize="start" 省略号在开头 android:ellipsize="middle" 省略号在中间 android:ellipsize="end" 省略号在结尾 android:ellipsize="marquee" 跑马灯显示(不显示省略号了,但还没跑起来) android:focusable="true" 可聚焦 android:focusableInTouchMode="true" 添加这两行后可以初步实现效果
但只能实现一行时的效果,如果放两个TextView则只会第一个有效果,第二个不会动。 实现方法: 在MainActivity旁边新建一个类MarqueeTest继承TextView public class MarqueeTest extends TextView public MarqueeTest(Context context) super(context); public MarqueeTest(Context context, AttributeSet attrs) super(context, attrs); public MarqueeTest(Context context, AttributeSet attrs, int defStyleAttr) super(context, attrs, defStyleAttr); @Override public boolean isFocused() return true; //判断是否处于显示状态,重写方法后让两个TextView都实现效果 TextView类型修改:<com.bcp.paomadengtest.MarqueeTest android:id="@+id/text2" android:layout_below="@id/text" android:layout_marginTop="20dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="24sp" android:singleLine="true" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:text="@string/str" />
以上是关于Android利用TextView制作跑马灯该效果的主要内容,如果未能解决你的问题,请参考以下文章