android TextView实现跑马灯效果(字体滚动)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapplication.MainActivity">
<!--
android:singleLine="true"    //文字一行显示
android:ellipsize="marquee"  //跑马灯属性
android:focusable="true"    //TextView是否可以获取焦点
android:focusableInTouchMode="true"  //文字滑动的时候是否可以获取焦点
-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="zxcvbnmasdfghjklqwertsssssssssssssssssssssssyuiop"
android:textSize="24sp"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"/>
</LinearLayout>
原文地址:https://www.cnblogs.com/fengzikuange/p/6100865.html