android跑马灯出现重复跳动以及不滚动问题的解决方法
程序员文章站
2022-06-25 09:46:14
android跑马灯出现重复跳动、不滚动问题,本文给出解决方案,供大家参考。原因:页面有view被重新绘制了、焦点被抢占例如:1、textview 的width被设置为wrap_content,set...
android跑马灯出现重复跳动、不滚动问题,本文给出解决方案,供大家参考。
原因:页面有view被重新绘制了、焦点被抢占
例如:
1、textview 的width被设置为wrap_content,settext()时内容改变会导致view重新绘制;
2、页面中动态生成view同样会影响跑马灯效果;
解决办法:
1.尽可能的将页面的view的宽和高设置为固定值,尽量不要动态去修改
2.自定义textview 重写isfocused()函数,让他放回true也就是一直获取了,焦点效果自然也就出来了,如果这都不能解决那肯就不是焦点问题了。
public class marquetextview extends textview { public marquetextview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); } public marquetextview(context context, attributeset attrs) { super(context, attrs); } public marquetextview(context context) { super(context); } @override public boolean isfocused() { return true; } @override protected void onfocuschanged(boolean focused, int direction, rect previouslyfocusedrect) { if(focused){ super.onfocuschanged(focused,direction,previouslyfocusedrect); } } @override public void onwindowfocuschanged(boolean focused) { if (focused) { super.onwindowfocuschanged(focused); } } }
小编之前还看到一个关于android跑马灯重复抖动的解决方法,也分享给大家,谢谢原作者的分享
先贴一下textview跑马灯的实现代码
<textview android:id="@+id/tv_bluetoothdatas" android:layout_width="match_parent" android:layout_height="wrap_content" android:textcolor="@color/yellow_f38131" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:marqueerepeatlimit="marquee_forever" />
出现的问题,在界面上,有一个用viewpager实现的广告轮播功能,发现每次切换广告的时候,跑马灯会跳动,并且从头显示,以为是viewpager与跑马灯冲突,后来在网上搜了一下,android 6.0有时候会出现这个问题,解决的方法,在跑马灯控件外层,再嵌套一个布局控件
<linearlayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:orientation="horizontal" android:layout_marginleft="5dp" android:layout_marginright="5dp"> <textview android:id="@+id/tv_bluetoothdatas" android:layout_width="match_parent" android:layout_height="wrap_content" tools:text="11111111111111111111111111111111111111111111111" android:textcolor="@color/yellow_f38131" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:marqueerepeatlimit="marquee_forever" /> </linearlayout>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。