android线性布局之比例

想要将线性布局按照比例来,要用到android:layout_weight,

如果想要在垂直方向上按照比例,要设置android:layout_height="0dip",android:layout_weight=相应的值

如果想要在水平方向上按照比例,要设置android:layout_width="0dip",android:layout_weight=相应的值


但是要注意!父元素要做以下设置,否则不起作用

android:layout_width="match_parent"----水平方向
android:layout_height="match_parent"----垂直方向


你可能感兴趣的:(android线性布局之比例)