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.


Popular posts from this blog

javascript - Js, document.getElementById("ID").innerHTML, error -

jquery - jqGrid update specific column data with out refreshing the entire column? -

objective c - Is there a way in OCMockito to make stubs fail when an unknown method is called? -