What is android:weightSum in android, and how does it work?

前端 未结 9 771
梦毁少年i
梦毁少年i 2020-11-22 04:02

I want to know: What is android:weightSum and layout weight, and how do they work?

9条回答
  •  情话喂你
    2020-11-22 04:05

    Weight sum works exactly as you want (like other answers you don't have to sum all the weights on parent layout). On child view specify the weight you want it to take. Don't forget to specify

    android:layout_width="0dp" 
    

    Following is an example

        
    
                    
                    
    
                    
                    
    
                    
                    
     
    

    This will look like

提交回复
热议问题