FloatingActionButton
浮动动作按钮用于特殊类型的提升动作。它们的区别在于浮动在UI上方的带圆圈图标,并具有与变形,发射和转移锚点有关的特殊运动行为
官网
对于App或某个页面中是否要使用FloatingActionButton必要性
FAB代表一个App或一个页面中最主要的操作,如果一个App的每个页面都有FAB,则通常表示该App最主要的功能是通过该FAB操作的。
为了突出FAB的重要性,一个页面最好只有一个FAB。
依赖
implementation 'com.android.support:design:29.0.0'
布局
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/main_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="100dp"
android:layout_marginBottom="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
网友评论