25

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

在此处输入图像描述

我设法创建了这样一个表格,但不知道如何将它应用到我的工厂,或者是否有可能。形状的 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 但我不知道如何。

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

4

4 回答 4

15

支持库提供的 FloatingActionButton 无法扩展,因为需要替换的方法设置为私有。Material Components(它是支持库的官方 AndroidX 替代品)在 10 月至 12 月的路线图上有Shape Theming,这将使您可以正式且轻松地做到这一点(无需扩展视图)。

但它现在还不可用,所以与此同时,我通过robertlevonyan派生了 customFloatingActionButton,并稍作修改,它允许您使用自己的自定义形状。源代码可在此处获得。

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

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

然后实现我的分叉:

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" />

看起来是这样的:

于 2018-09-18T05:15:57.450 回答
5

使用材料组件库,您可以使用shapeAppearanceOverlay

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

和:

<style name="fab_3_rounded">
    <item name="cornerFamily">rounded</item>
    <item name="cornerSize">50%</item>
    <item name="cornerSizeBottomLeft">0dp</item>
</style>

在此处输入图像描述

于 2020-07-04T06:28:32.320 回答
1

无需更新任何外部库更新您的 Gradle 文件

implementation 'com.google.android.material:material:1.1.0'

implementation 'com.google.android.material:material:1.3.0'

这将使您可以访问

  <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

然后您可以像普通按钮一样更改其属性

于 2021-02-09T09:28:58.947 回答
-1

您正在寻找的是更改按钮的背景

android:background="@drawable/my_shape"
于 2018-03-13T16:14:05.707 回答