是否可以在 android 相对布局的宽度上均匀分布按钮

发布于 2024-11-16 15:15:52 字数 899 浏览 2 评论 0原文

简单问题

是否可以在 Android 相对布局的宽度上均匀分布按钮?

<RelativeLayout android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:id="@+id/menu" android:layout_alignParentBottom="true">
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="aaaaaaa" android:id="@+id/aaaa"
        android:layout_alignParentLeft="true"></Button>
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="bbbbbbb" android:id="@+id/bbbbb"
        android:layout_centerHorizontal="true" android:textStyle="bold"></Button>
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="cccccccc" android:id="@+id/cccccc"
        android:layout_alignParentRight="true" android:textStyle="bold"></Button>

Simple Ask

Is it possible to evenly distribute buttons across the width of an android RELATIVE LAYOUT?

<RelativeLayout android:layout_height="wrap_content" android:layout_width="fill_parent"
    android:id="@+id/menu" android:layout_alignParentBottom="true">
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="aaaaaaa" android:id="@+id/aaaa"
        android:layout_alignParentLeft="true"></Button>
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="bbbbbbb" android:id="@+id/bbbbb"
        android:layout_centerHorizontal="true" android:textStyle="bold"></Button>
    <Button android:layout_height="30dp" android:layout_width="wrap_content"
        android:text="cccccccc" android:id="@+id/cccccc"
        android:layout_alignParentRight="true" android:textStyle="bold"></Button>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

数理化全能战士 2024-11-23 15:15:52

如何在您的RelativeLayout中添加一个LinearLayout,并在LinearLayout中添加按钮(所有按钮应该具有相同的layout_weight)。

How about throwing a LinearLayout inside your RelativeLayout, and adding the Buttons inside the LinearLayout (all of the buttons should have the same layout_weight).

乜一 2024-11-23 15:15:52

我所知道的唯一方法是将它们放入 LinearLayout 并设置权重。

The only way that I know of is to put them in a LinearLayout and set the weight.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文