How to remove the space between rows of grid view in android

前端 未结 8 996
猫巷女王i
猫巷女王i 2021-02-02 13:53

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

        

        
8条回答
  •  北恋
    北恋 (楼主)
    2021-02-02 14:08

    Put the following line in ur getView() method...

    mImage.setPadding(0, 0, 0, 0);
    

    I hope this will help you.

提交回复
热议问题