gpt4 book ai didi

android - 如何更改扩展 float 操作按钮的形状?

转载 作者:行者123 更新时间:2023-12-04 11:38:36 25 4
gpt4 key购买 nike

我正在尝试将我的操作按钮的形状从这个默认形状更改为矩形。这是我的xml:

<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:cornerRadius="90dp"
android:text="@string/create_player_text"
android:fontFamily="@font/proximanova_semibold"
app:layout_constraintHorizontal_bias="0.99"
app:layout_constraintVertical_bias="0.01"/>

enter image description here

最佳答案

如果你想改变 ExtendedFloatingActionButton 的形状您可以使用 shapeAppearanceOverlay 布局中的属性:

    <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlayExtended"
../>

和:
  <style name="ShapeAppearanceOverlayExtended" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">0dp</item>
</style>

如果您想要拐角半径,只需更改 <item name="cornerSize">0dp</item> 中的值即可。 .

enter image description here

关于android - 如何更改扩展 float 操作按钮的形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57860904/

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