I have a gridview
<GridView
android:id="@+id/gridview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginLeft="60px"
android:layout_marginRight="60px"
android:background="#343434"
android:listSelector="#00343434"
android:numColumns="2"
android:verticalSpacing="25px" >
</GridView>
When I click, the click of an element is indicated in the gray color box.
I want to remove the gray effect when the item is clicked.
Please give some suggestion, thanks.
source
share