解决 WebView 点击时网页不断闪耀

解决高版本 WebView 点击时网页不断闪耀的问题 🤗

设置 TextView 自动水平滚动

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<TextView
android:id="@+id/tx"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:background="#fdf"
android:text="1234567890123456789012345678901234567890"

android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"
android:scrollHorizontally="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
/>

高版本测试中android:singleLine="true"虽然过期了,但仍不能使用android:maxLines="1"进行替换,如果实在强迫症患者可以使用tx.setSingleLine(true);替换。

分享到