Android Studio开发之UI界面优化---TextView控件实现跑马灯效果
程序员文章站
2022-05-15 11:58:25
...
序言:
TextView控件宽度在固定情况下,有时候会出现显示不完整的case。指定android:layout_width="wrap_content"确实可以解决显示不完整的case,但是有时候却会破坏UI界面的美观!为此使用走马灯的效果就可以解决这个2难问题。写下此博客,以备忘!
正文:
1、在布局文件中配置TextView如下属性:
android:text="BackGround"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
备注:其中android:ellipsize="marquee"指定走马灯方式来显示数据!android:marqueeRepeatLimit="marquee_forever"指定永不停息地走马灯效果。不指定就是默认,默认情况下一条超出指定宽度的文本显示的时候,走马灯只跑3次就结束了。
我的配置截图:
---- The End.