Android Studio 制作一个循环播报的效果
2024-08-05 23:16:15
这个就是用到了一个TextView 控件,直接上代码。
<TextView
android:id="@+id/tv_7"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="熟能生巧,业精于勤。"
android:textSize="20sp"
android:textColor="@color/colorBlue"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_alignParentBottom="true"/>
这里singleLine设置为单行
ellipsize这只他为当显示不下的时候以 ... 代替
marqueeRepeatLimit 设置循环次数
android:focusable="true" android:focusableInTouchMode="true"
聚焦一下,这两行必须要有
最新文章
- WPF透明设置(Opacity)
- luogg_java学习_12_线程
- ASP.NET MVC5 实现网址伪静态
- python安装tkinter
- Hadoop YARN资源隔离技术
- HDOJ 2066 floyed优化算法
- SQL SERVER 创建作业
- java.lang.InstantiationException: DWR can&#39;t find a spring config. See the logs for solutions
- 在ADS上由于volatile惹得祸
- HDU4907小技巧
- JQuery 之事件中的 ----- hover 与 onmouseover 、onmouseout 联系
- Java IO(五)==>;>;重点
- json转js对象方法,JS对象转JSON方法
- Java变成思想--多线程
- MSSQL coalesce系统函数简介
- UVA1616-Caravan Robbers(枚举)
- 网站建设部署与发布--笔记3-部署Nginx
- C语言函数调用栈(一)
- python,pycharm安装
- 一张图知道HTML5布局(图)