我试图为简单的 HorizontalScrollView 添加褪色边缘。关于 fadingEdge 属性的文档:
此属性已弃用,从 API 级别 14 (ICE_CREAM_SANDWICH) 开始将被忽略。使用淡入淡出的边缘可能会导致明显的性能下降,并且应仅在应用程序的视觉设计需要时使用。要请求 API 级别 14 及更高级别的淡入淡出边缘,请改用 android:requiresFadingEdge 属性。
好的,但是这个布局也没有显示任何褪色边缘:
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/horizontalScrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:requiresFadingEdge="horizontal"
android:fadingEdgeLength="50dp"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
...
</LinearLayout>
</HorizontalScrollView>
我错过了什么?