gpt4 book ai didi

android - 如何防止 LinearLayout Android 菜单中按钮之间的空格?

转载 作者:行者123 更新时间:2023-11-29 20:37:26 34 4
gpt4 key购买 nike

我在 RelativeLayout 中有 LinearLayout,所以我想将按钮放在父布局的顶部。我添加了 4 个相对权重相等的按钮(“1”),因此它们的大小都相等。现在它是这样显示的,但我想要一个没有空格的外观。

enter image description here

最佳答案

如果你没有为按钮设置背景,就会出现这个问题,要么设置透明,要么设置一些颜色作为背景。请不要将其留空,否则将分配默认按钮属性。我已经为你制作了样本。请试试这个..

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout

android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_alignParentTop="true"
android:orientation="horizontal">

<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/white"
/>

<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/white"/>

<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="@android:color/white"
android:layout_weight="1"/>

<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="@android:color/white"
android:layout_weight="1"/>
</LinearLayout>

</RelativeLayout>

关于android - 如何防止 LinearLayout Android 菜单中按钮之间的空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31336610/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com