I want to know: What is android:weightSum and layout weight, and how do they work?
|
|
|
It is better to explain with an example. You have a |
|||||||||
|
|
Adding on to superM's and Jeff's answer, If there are 2 views in the LinearLayout, the first with a layout_weight of 1, the second with a layout_weight of 2 and no weightSum is specified, by default, the weightSum is calculated to be 3 (sum of the weights of the children) and the first view takes 1/3 of the space while the second takes 2/3. However, if we were to specify the weightSum as 5, the first would take 1/5th of the space while the second would take 2/5th. So a total of 3/5th of the space would be occupied by the layout keeping the rest empty. |
|||
|
|
|
The documentation says it best and includes an example, (highlighting mine).
So to correct superM's example, suppose you have a To accomplish this, you would apply |
|||
|
|
|
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"
|
|||
|
|