gpt4 book ai didi

android - 如何使用 LinearLayout 均匀间隔圆形 ImageButtons

转载 作者:行者123 更新时间:2023-12-02 15:00:07 24 4
gpt4 key购买 nike

我已经找到了如何使用 Shape 背景创建圆形 ImageButtons,并且我已经找到了如何通过将宽度设置为 0dp 并将权重设置为 1 来在 LinearLayout 中均匀间隔按钮。但我不能不要把两者结合起来,所以要么圆形按钮的间距不均匀
round but not evenly spaced

或者它们间隔均匀但不圆
enter image description here

看起来额外的空间是在内部按钮而不是边缘。如何让 LinearLayout 将新的空白空间分配给边距而不是 View ?

这是给我上面第二张图片的布局

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>

<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>

<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>
</LinearLayout>

这是背景

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="#33DDFF" />
<corners android:radius="4dp"/>
</shape>

最佳答案

我找到的一个解决方案是在按钮周围和按钮之间使用空的 Space,并让它们占用额外的空间

    <Space
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="1" >
</Space>

我必须移除实际按钮的重量并将宽度设置为 wrap_content

 <ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"

android:background="@drawable/rounded"
android:contentDescription="@string/speak_button_desc"/>

关于android - 如何使用 LinearLayout 均匀间隔圆形 ImageButtons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50458792/

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