TextView跑马灯效果简单实现

简易xml实现

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="100dip"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="走马灯效果的演示由于输入的内容多于一行,如果不处理就会直接不显示后面的内容,通过处理可以在前面、中间或后面加一个省略号的效果"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true" />
</LinearLayout>

跑马灯进阶版:http://blog.csdn.net/u013836857/article/details/51423393

此博客用于个人笔记查阅,同时也和大家一起分享,如有不对,恳请指正。

猜你喜欢

转载自blog.csdn.net/weixin_37011894/article/details/79411949