Gridview not fit for all screens in Android

后端 未结 2 653
迷失自我
迷失自我 2020-12-22 13:14

I am working in an Android app. In this I have an issue that my GridView and images are not get fit with all screen sizes .

Here I have the grid

2条回答
  •  [愿得一人]
    2020-12-22 13:33

    Try the follwoing GridLayout,

    
    
        
    

    And change your GridLayout item to the following,

    
    
            
    
            
    
        
    

    To use the support.v7.widget.GridLayout add the dependency,

    implementation 'com.android.support:cardview-v7:27.0.1'

    Haven't tested yet, but it should work.

提交回复
热议问题