支持库提供的 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" />
看起来是这样的: