Removing the extra padding in a GridView in android

前端 未结 5 749
心在旅途
心在旅途 2020-12-15 22:21

I want to remove the extra padding that appears in a grid view. I have images of the size 128*128 which will be occupying cells in the grid. But somehow there is an extra sp

5条回答
  •  心在旅途
    2020-12-15 22:45

    Even I had the same problem. Try this:

    image.setLayoutParams(new GridView.LayoutParams(imageWidth , imageHeight)); imageView.setScaleType(ImageView.ScaleType.FIT_XY);.

    Add padding accordingly for the images.It worked for me.

提交回复
热议问题