如何集成可扩展的浮动操作按钮

vxf3dgd4  于 2021-06-29  发布在  Java
关注(0)|答案(1)|浏览(373)

我是一个使用java开发android的初学者,我曾经尝试过上网,但是没有效果。库的名称是什么,我可以用它来制作可扩展的浮动动作按钮,如下图所示。
请帮忙。

ghhaqwfi

ghhaqwfi1#

我在看一些源代码。我找到了一个最好的可扩展fab(浮动操作按钮)
让我添加那些源代码。将其添加到build.gradle

implementation 'com.nambimobile.widgets:expandable-fab:1.0.2'

将以下源代码添加到布局

<!-- This is NOT a root view, but should be a child of whatever root view you 

choose (CoordinatorLayout, ConstraintLayout, etc) -->
<com.nambimobile.widgets.efab.ExpandableFabLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <!-- The next 3 Views will only display in portrait orientation -->          
  <com.nambimobile.widgets.efab.Overlay
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:overlay_orientation="portrait"/>
  <com.nambimobile.widgets.efab.ExpandableFab
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_marginBottom="@dimen/ui_margin_medium"
    android:layout_marginEnd="@dimen/ui_margin_medium"
    android:layout_marginRight="@dimen/ui_margin_medium"
    app:efab_orientation="portrait"/>
  <com.nambimobile.widgets.efab.FabOption
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:fab_orientation="portrait"
    app:label_text="Portrait Option 1"
    android:onClick="onClickPortraitOption1"/>

  <!-- The next 3 Views will only display in landscape orientation -->
  <com.nambimobile.widgets.efab.Overlay
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:overlay_orientation="landscape"/>
  <com.nambimobile.widgets.efab.ExpandableFab
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_marginBottom="@dimen/ui_margin_medium"
    android:layout_marginEnd="@dimen/ui_margin_medium"
    android:layout_marginRight="@dimen/ui_margin_medium"
    app:efab_orientation="landscape"/>
  <com.nambimobile.widgets.efab.FabOption
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:fab_orientation="landscape"
    app:label_text="Landscape Option 1"
    android:onClick="onClickLandscapeOption1"/>

</com.nambimobile.widgets.efab.ExpandableFabLayout>

然后,您可以像在java文件中使用on按钮一样使用这些fab。
让我加上那个链接

相关问题