小编典典

如何在两个小部件/布局之间添加新的“浮动操作按钮”

all

我猜你已经看到了新的 Android 设计指南,新的“浮动操作按钮”又名“FAB”

例如这个粉红色的按钮:

在此处输入图像描述

我的问题听起来很愚蠢,我已经尝试了很多东西,但是将这个按钮放在两个布局的交叉点的最佳方法是什么?

在上面的示例中,这个按钮完美地放置在我们可以想象的 ImageView 和 relativeLayout 之间。

我已经尝试了很多调整,但我相信有一种正确的方法可以做到这一点。


阅读 74

收藏
2022-04-25

共1个答案

小编典典

最佳实践:

  • 添加compile 'com.android.support:design:25.0.1'到gradle文件
  • 用作CoordinatorLayout根视图。
  • 添加layout_anchor到 FAB 并将其设置为顶视图
  • 添加layout_anchorGravity到 FAB 并将其设置为:bottom|right|end

在此处输入图像描述

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/viewA"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.6"
            android:background="@android:color/holo_purple"
            android:orientation="horizontal"/>

        <LinearLayout
            android:id="@+id/viewB"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.4"
            android:background="@android:color/holo_orange_light"
            android:orientation="horizontal"/>

    </LinearLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:clickable="true"
        android:src="@drawable/ic_done"
        app:layout_anchor="@id/viewA"
        app:layout_anchorGravity="bottom|right|end"/>

</android.support.design.widget.CoordinatorLayout>
2022-04-25