Android gridview adjusting to screen size

后端 未结 3 1546
刺人心
刺人心 2020-12-08 08:01

The grid view of my application has 3 rows and 3 columns. I want this to fill the screen ,irrespective of the screen size of the device.

I tried getting window size

3条回答
  •  自闭症患者
    2020-12-08 08:55

    Here I only changed width and height as match parent and wrap content.

    
    
    
        
    
            
    
            
    
    
            
    
    
            
    
            
    
            
    
            
    
            
    
    
        
    
    
    

    And in the Mainclass add this -->

    GridLayoutManager gridLayoutManager=new GridLayoutManager(this,2);
            recyclerView.setLayoutManager(gridLayoutManager);
    

提交回复
热议问题