Skip to content

Instantly share code, notes, and snippets.

@dzwillpower
Created September 2, 2013 04:55
Show Gist options
  • Save dzwillpower/6409305 to your computer and use it in GitHub Desktop.
Save dzwillpower/6409305 to your computer and use it in GitHub Desktop.
auto-scroll-text-view textview 跑马灯效果
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:scrollHorizontally="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:text="Hello Android.. I am android developer and developing this auto scroll text view via XML." />
xml没有设置select 属性 代码里面设置select属性 就可以实现跑马灯效果
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment