i have made a tab scrollable, problem is it shows a white strip to indicate more tab are available , how to get rid of this strip from beginning & end?
here is xml:
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:fillViewport="true"
android:overScrollMode="never"
android:scrollbars="none" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/menu_bg" />
</HorizontalScrollView>
Try to set
android:fadingEdge="none"in your xml, orsetFadingEdgeLengthin code.