GridLayout (not GridView) how to stretch all children evenly

后端 未结 20 2107
独厮守ぢ
独厮守ぢ 2020-11-22 09:35

I want to have a 2x2 grid with a buttons inside. This is only ICS so I am trying to use the new GridLayout given.

Here\'s the XML of my layout:

 <         


        
20条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 10:20

    i have same problem and i think just set width and height programmatically :

    set width of button's with metrics.widthPixels / 2 metrics is object of DisplayMetrics.

     GridLayout gridLayout=findViewById(R.id.grid);
        for (int i = 0; i 

提交回复
热议问题