XML文件内容如下
<TextView
android:id="@+id/tv_result"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center_vertical"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="20sp" />

为什么设置跑马灯,当文字滚动起来以后TextView两边会有渐变模糊效果,怎么去掉这个效果?需要修改TextView吗?