0

为什么textview边缘出现异常方块?

当它有

  • 使用褪色边缘启用选取框。
  • 文本视图设置为透明。

文本视图定义

    <TextView
    android:id="@+id/mytext"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:ellipsize="marquee"
    android:fadingEdge="horizontal"
    android:text="@string/hello_world"
    android:singleLine="true"  
    android:textSize="55sp" />

文本视图属性

TextView textView = (TextView) findViewById(R.id.mytext);
textView.setAlpha(0.7f);

这个问题在 android 4.1 上没有出现,但如果启用了淡入淡出边缘,它会出现在 android 4.2 及更高版本上。

4

1 回答 1

1

经过进一步研究,在上传以下更改后,它是 android 框架中的错误,它已解决。 https://android-review.googlesource.com/#/c/69101/

该问题不再出现在最新版本的 android 中。

于 2014-02-12T02:02:10.993 回答