2015-07-02 37 views
0

我有一個HorizontalScrollView纏繞在TabLayout上,效果很好,但很難讓它知道它實際上是一個水平滾動。如何淡入Horizo​​ntalScrollView的結尾?

我該如何褪色結束,並可能在最後放置一個箭頭,以使用戶有足夠的指示來滾動它?

enter image description here

<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> 

回答

1

您可以通過覆蓋半透明的ImageView,並只顯示它的時候沒有完全滾動超過做到這一點。

相關問題