Android滚动文字效果

开始弄的时候以为很麻烦呢

一搜就是各种库

原来设置几个属性就可以了

	<TextView
        android:id="@+id/tv_Marquee"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center_vertical"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:padding="10.0dip"
        android:singleLine="true"
        android:textSize="22.0sp" />
发布了77 篇原创文章 · 获赞 44 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/lemisky/article/details/102688270