I have GridView with 6 images in 2 columns. I want to display this 6 images in the middle of the screen. I set gravity properties to center but this center elements only hor
Try to change this: android:layout_height="fill_parent" into android:layout_height="wrap_content"
android:layout_height="fill_parent"
android:layout_height="wrap_content"
You are now telling your grid view to fill it's parent height and width fully.