layout_weight

1. layout是LinearLayout, 方向是横向,包含两个RelativeLayout

那么如果每个RelativeLayout的layout_width="fill_parent",并且layout_weight="1",

那么每个RelativeLayout的宽度占整个LinearLayout宽度的1/2(计算:1/(1+1))

ps:LinearLayout的layout_width="wrap_content"时,上面的设置好像无效。

你可能感兴趣的:(layout)