如何淡出 Horizo​​ntalScrollView 的结尾?

How to fade end of HorizontalScrollView?

我有一个 HorizontalScrollView 包裹着一个 TabLayout 并且效果很好,但用户很难知道它实际上是一个水平滚动。

我如何淡化结尾并在结尾放置一个箭头以向用户提供足够的滚动提示?

    <HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none"
        android:fillViewport="true">
        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </HorizontalScrollView>

您可以通过覆盖一个半透明的 ImageView 来做到这一点,并且只在没有完全滚动时显示它。

嘿,我对你的问题不太了解,但这里有一个类似的问题。 看看吧。

making the edge of the scrollview fade when scrolling in android

这会使左右边缘看起来褪色:

<android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:requiresFadingEdge="horizontal"
            android:fadingEdgeLength="80dp">

只需添加 Horizo​​ntalScrollView

android:requiresFadingEdge="horizontal|vertical" 
android:fadingEdgeLength="10dp"