Android: How to remove black line below the GridView -
i have gridview. have added paddingbottom view. when scroll gridview there blackish line seen on border of gridview , bottom padding. how rid of blackish line?
the gridview xml code follows:
<gridview android:id="@+id/slot_gridview" android:layout_width="match_parent" android:layout_height="507dp" android:columnwidth="90dp" android:numcolumns="2" android:scrollbars="none" android:listselector="#00000000" android:layout_margintop="10dp" android:paddingbottom="20dp" android:layout_marginbottom="10dp" android:verticalspacing="31dp" />
use
android:fadingedge="none"
for disable black strip.