gpt4 book ai didi

android - 如何在 android 上更改 float 操作按钮 (FAB) 的形状?

转载 作者:IT王子 更新时间:2023-10-28 23:31:46 26 4
gpt4 key购买 nike

在我们的 android 应用程序中,我们需要创建一个 float 操作按钮,它不是默认的圆形,而是一个带有三个圆角的正方形。晶圆厂如下图所示:

enter image description here

我设法创建了这样一个表格,但不知道如何将它应用到我的工厂,或者是否可能。形状的 xml 文件如下所示:

   <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/red" />
<corners
android:topLeftRadius="90dp"
android:topRightRadius="90dp"
android:bottomRightRadius="90dp"/>
</shape>

我尝试用

更改表单
android:src="@drawable/my_shape"

但这只会改变我按钮内的图标。我想我需要扩展 FloatingActionButton 但我不知道怎么做。

有没有办法改变工厂的形状?如果有人已经实现了这一点,我会很高兴看到一个示例。

最佳答案

支持库提供的 FloatingActionButton 无法扩展,因为需要替换的方法设置为私有(private)。 Material Components (这是支持库的官方 AndroidX 替代品)有 Shape Themingroadmap约 10 月至 12 月,这将让您正式轻松地做到这一点(无需扩展 View )。

但它现在还没有,所以在此期间,我 fork 了 customFloatingActionButton由 robertlevonyan 设计,稍作修改后,您可以使用自己的自定义形状。源代码可用here .

要使用 Gradle 将其添加到您的项目中,您需要使用 jitpack .你可以这样添加:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

然后实现我的fork:

implementation 'com.github.JediBurrell:customFloatingActionButton:-SNAPSHOT'

接下来我们将创建形状,您创建的应该可以正常工作。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners
android:topLeftRadius="@dimen/fab_circle_radius"
android:topRightRadius="@dimen/fab_circle_radius"
android:bottomRightRadius="@dimen/fab_circle_radius" />
<solid android:color="@color/colorAccent" />
</shape>

然后最后将其添加到您的布局中(Github 存储库中列出了更多 FAB 选项):

<com.jediburrell.customfab.FloatingActionButton
android:id="@+id/floating_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
app:fabType="custom"
app:fabShape="@drawable/fab_teardrop"
app:fabIcon="@drawable/ic_add_24dp"
app:fabColor="@color/red" />

这就是它的外观:

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

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