如何在 LinearLayout 中分隔项目?
我想创建一个如下所示的工具栏:
如何在 XML 中执行此操作?这是我目前的样子:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/toolbarLinearLayout" android:background="@color/solid_yellow">
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/replyButton" android:text="Reply"></Button>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RT" android:id="@+id/rtButton"></Button>
<Button android:id="@+id/dmButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="DM"></Button>
</LinearLayout>
I want to create a toolbar that looks like:
How can I do this in XML? Here is what mine looks like currently:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/toolbarLinearLayout" android:background="@color/solid_yellow">
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/replyButton" android:text="Reply"></Button>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RT" android:id="@+id/rtButton"></Button>
<Button android:id="@+id/dmButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="DM"></Button>
</LinearLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为线性布局中的项目添加 android:layout_margin="some value" 。这对我有用。
Add android:layout_margin="some value" for item in linearlayout.This worked for me.
看起来您可能需要 LinearLayout 的 padding 属性,例如
要使每个项目占用相同的空间量,请使用layout_weight,例如
只要所有元素具有相同的权重,它们就应该占用相同的空间。 layout_width="fill_parent" 将确保整个栏被填充。
Looks like you might want the padding attribute of the LinearLayout, e.g.
To get the items to each take up the same amount of space, use layout_weight, e.g.
As long as all the elements have the same weight they should take up the same space. layout_width="fill_parent" will ensure the whole bar is filled.
像这样定义你的工具栏:
所有额外的空间将分配给按钮之间的透明视图。
Define your toolbar something like this:
All the extra space will be allocated to the transparent views between the buttons.