1. 程式人生 > >Android 跑馬燈無效解決辦法

Android 跑馬燈無效解決辦法

xml檔案:

<TextView
android:id="@+id/text_vv"
android:scrollHorizontally="true"
android:marqueeRepeatLimit="marquee_forever"
android:focusableInTouchMode="true"
android:focusable="true"
android:ellipsize="marquee"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="18dp"
android:text="左滑關注專案,新增到我的專案中,左滑關注專案,新增到我的專案中" /> 按照常規的設定方法設定好了以後,跑馬燈沒有效果,嘗試了各種方法,甚至自定義也是沒有效果,最後 看到一個帖子,試了一下的方法,果然好使了,在程式碼中設定setSelected(true); text.setSelected(true); 這個設定解決了我的問題,跑馬燈有效果了,希望對大家有所幫助。