I am having a GridView
and added more than 50 images on it and performing delete operation on them.
I observe that what images i am deleting,they are leaving the blank space from top, means other images are not taking that place which is look so ugly.
I want that deleting image space should be covered by other images in grid.
Thanks.
code
if(v.getId() == R.id.delete_button)
{
adp.list.removeAll(bitmapList);
adp.notifyDataSetChanged();
bitmapList.clear();
grid.clearChoices();
}