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

Posted 疯子宽哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>


















以上是关于android TextView实现跑马灯效果(字体滚动)的主要内容,如果未能解决你的问题,请参考以下文章

Android TextView跑马灯效果

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

Android 使用TextView实现跑马灯效果

Android 文字自动滚动(跑马灯)效果的两种实现方法[特别好使]

android TextView实现跑马灯效果

android:TextView实现文字走马灯效果(欺骗系统获取持久的焦点)