I have a GridView which is pretty similar to the Google tutorial, except that I want to add the ImageViews on runtime (via a subactivity). The results are okay, but the layo
You must, first tell the adapter to notify that the data has changed and set the adapter again to the grid
adapter.notifyDataChanged(); grid.setAdapter(adapter);