I'm utilizing a simple listview and want to fade one edge, not two or four as I'm currently experiencing using:
<ListView
android:id="@+id/main_feed"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:requiresFadingEdge="vertical"
android:fadingEdgeLength="50dp" >
</ListView>
I want to only fade one edge (the bottom edge), but doing either 'vertical' or 'horizontal' in requiresFadingEdge fades top/bottom or left/right, respectively.
Any Suggestions?