gpt4 book ai didi

android - 如何将 float 操作按钮用作正方形?

转载 作者:行者123 更新时间:2023-12-05 00:11:02 36 4
gpt4 key购买 nike

有大量的 SO 线程说他们的按钮显示为一个正方形 do to a bug

Floating Action Button with square shape

Square FloatingActionButton with Android Design Library

Floating Action Button appearing as a square

但是我的目标是使用方形按钮。如何将 圆形 float 操作按钮 更改为方形?

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/standardBlue"
app:srcCompat="@drawable/ic_3d_model"/>

最佳答案

您可以使用 Material 组件库中的官方 FloatingActionButton 使用 shapeAppearanceOverlay 属性来实现。

只需使用:

    <com.google.android.material.floatingactionbutton.FloatingActionButton
app:shapeAppearanceOverlay="@style/fab_square"

<style name="fab_square" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">0dp</item>
</style>

enter image description here

关于android - 如何将 float 操作按钮用作正方形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62987314/

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