Tag: weight

线性布局和Android的重量

我总是阅读Android文档中有趣的重量值。 现在我想第一次尝试它,但它根本不工作。 据我所知,这个布局是: <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:text="Register" android:id="@+id/register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dip" weight="1" /> <Button android:text="Not this time" android:id="@+id/cancel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dip" weight="1" /> </LinearLayout> 应创build两个水平alignment的button并平均分配空间。 问题是两个button不能长大,以填补空间。 我想button增长和填补整个线路。 如果两个button都设置为与父母匹配,则只显示第一个button并填充整行。