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>

应该创建两个水平对齐并平均共享空间的按钮。问题是这两个按钮没有长出来填补空间。

我希望按钮能长出来,填满整条线。如果两个按钮都设置为匹配父按钮,则只显示第一个按钮并填充整行。

Android中的线性布局和权重

米琪卡哇伊
浏览 518回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android