如何使按钮像FAB那样浮在布局上,或者使一个FAB具有双按钮?

时间:2018-10-09 14:18:56

标签: android android-layout button material-design

enter image description here

底部的按钮,地图/过滤器。来自expedia应用。这是什么按钮? FAB可以覆盖两个按钮吗?

1 个答案:

答案 0 :(得分:2)

作为我自己制作过一个极其小部件的人,我的最佳猜测是,这根本不是FAB甚至根本不是Button。它可能只是一个具有两个可单击区域的浮动ViewGroup(例如,可能是一个包含两个TextView的LinearLayout)。

您可以使用FrameLayout(或类似CoordinatorLayout的精神子类)来创建它,以承载您的主要内容视图,然后在其顶部放置“按钮”视图组。 CardView是在所有Android API级别上获取圆角和高程的好方法:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    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">

    <!-- insert your content here -->

    <android.support.v7.widget.CardView
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        android:layout_marginBottom="32dp"
        android:layout_gravity="center_horizontal|bottom"
        app:cardCornerRadius="24dp"
        app:cardElevation="8dp">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="48dp"
            android:paddingLeft="12dp"
            android:paddingRight="12dp"
            android:orientation="horizontal">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:padding="12dp"
                android:gravity="center"
                android:drawableStart="@drawable/icon_map"
                android:drawablePadding="6dp"
                android:textColor="#00f"
                android:textSize="18sp"
                android:text="@string/label_map"
                android:fontFamily="sans-serif-medium"/>

            <View
                android:layout_width="1dp"
                android:layout_height="match_parent"
                android:layout_marginTop="12dp"
                android:layout_marginBottom="12dp"
                android:background="#ccc"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:padding="12dp"
                android:gravity="center"
                android:drawableStart="@drawable/icon_filters"
                android:drawablePadding="6dp"
                android:textColor="#00f"
                android:textSize="18sp"
                android:text="@string/label_filters"
                android:fontFamily="sans-serif-medium"/>

        </LinearLayout>

    </android.support.v7.widget.CardView>

</FrameLayout>

enter image description here