android跑马灯效果的TextView

没有检索到摘要

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 为什么要使用跑马灯效果的TextView?

有时候为了布局需要在一行显示很多文字信息,当TextView中文字超过了TextView的长度时,
我们需要用跑马灯的效果来展现文字。

通过布局的方式实现:

     
 <TextView
                            android:id= "@+id/tv_measure_user"
                            android:layout_width= "0px"
                                      android:layout_height ="wrap_content"
                                      android:layout_weight= "1"
                                      android:textColor ="@color/main_light"
                                      android:ellipsize= "marquee"
                                      android:focusable= "true"
                                      android:singleLine= "true"
                                      android:focusableInTouchMode ="true"
                                      android:marqueeRepeatLimit ="marquee_forever"
                                      android:scrollHorizontally= "true"
                                      android:textSize = "@dimen/normal_text_size"
                                                                         ></ TextView>

                      
</pre></div><pre name="code" class="java">


android:ellipsize= "marquee"  跑马灯效果显示
android:focusable= "true"     获得焦点
android:focusableInTouchMode ="true"     触摸模式下可获得焦点
android:marqueeRepeatLimit ="marquee_forever"     跑马灯效果持续时间

这几个属性设置完之后,在有些手机上还是无法实现跑马灯效果,那么一定要加上下面代码:
TextView textView = (TextView)findViewById(R.id.txtView);
 textView.requestFocus();//需要焦点

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值