Created
September 2, 2013 04:55
-
-
Save dzwillpower/6409305 to your computer and use it in GitHub Desktop.
auto-scroll-text-view textview 跑马灯效果
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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