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" />

你可能感兴趣的:(android,xml)