android跑马灯效果的TextView

来源:互联网 发布:练字软件app 编辑:程序博客网 时间:2024/06/06 12:35

 为什么要使用跑马灯效果的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();//需要焦点

0 0
原创粉丝点击