android跑馬燈出現重復跳動以及不滾動問題的解決方法
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>
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Android文本視圖TextView實現跑馬燈效果
- Android實現跑馬燈效果的兩種簡單方式
- Android用TextView實現跑馬燈效果代碼
- Android如何使用ViewPager2實現頁面滑動切換效果
- Android用viewPager2實現UI界面翻頁滾動的效果