4

我有一个可垂直滚动的 TextView。如何为其添加褪色边缘?

<TextView 
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:textSize="18dp"
    android:textColor="#ffffffff"
    android:fadingEdge="vertical"
    android:fadingEdgeLength="25dp"
/>

此代码不起作用

4

2 回答 2

2

尝试使用渐变背景? http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape

于 2012-08-20T10:06:24.617 回答
1

尝试添加真正使顶部边框褪色的 android:requiresFadingEdge="vertical" 。

仍在尝试找出底部...

于 2013-09-25T13:53:17.767 回答