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

前端 未结 9 772
梦毁少年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:20

    If unspecified, the sum is computed by adding the layout_weight of all of the children. This can be used for instance to give a single child 50% of the total available space by giving it a layout_weight of 0.5 and setting the weightSum to 1.0. Must be a floating point value, such as "1.2"

        
    
            
            
    
            
            
    
        
    

提交回复
热议问题