我有一个带CoordinatroLayoutFloatingActionButton。这是我的代码:

<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"
        android:layout_below="@+id/toolbar_layout"
        android:layout_above="@+id/actionbar">

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

            <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="120dp"
                android:minHeight="?android:attr/actionBarSize"
                android:background="@color/toolbar_color" />


            <ScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"

                >

            </ScrollView>


        </LinearLayout>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:clickable="true"
            app:fabSize="mini"
            android:src="@mipmap/ic_action_edit"
            app:layout_anchor="@id/toolbar"
            app:layout_anchorGravity="bottom|right|end"
            app:backgroundTint="@color/toolbar_color"            />
        </android.support.design.widget.CoordinatorLayout>

但它在棒棒糖和棒棒糖前装置中的表现有所不同。
棒棒糖:
android - 在协调器布局中具有 anchor 的FAB在android pre-lollipop中具有额外的余量-LMLPHP
棒棒糖前:
android - 在协调器布局中具有 anchor 的FAB在android pre-lollipop中具有额外的余量-LMLPHP
实际上我没有加任何保证金。但fab在棒棒糖前装置方面有一定的优势。
我在cheessesquare样本中也看到了这个问题。它也显示了不同的利润率。怎么了?

最佳答案

我认为你不想把它们没有边距。如果我理解正确的话,你这样做是为了看看不同版本的android中发生了什么。
您可以使用app:useCompatPadding="true"并删除自定义页边距,以便在不同版本的android中保持相同的页边距
android - 在协调器布局中具有 anchor 的FAB在android pre-lollipop中具有额外的余量-LMLPHP
概念证明
android - 在协调器布局中具有 anchor 的FAB在android pre-lollipop中具有额外的余量-LMLPHP

08-26 01:24