是否可以在 android 相对布局的宽度上均匀分布按钮
简单问题
是否可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何在您的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).
我所知道的唯一方法是将它们放入 LinearLayout 并设置权重。
The only way that I know of is to put them in a
LinearLayout
and set the weight.