In android grid view there is extra space between the rows of grid view. I am not adding any space to the gridview.
here is my xml files
Put the following line in ur getView() method...
mImage.setPadding(0, 0, 0, 0);
I hope this will help you.