Bug mit verankertem FloatingActionButton in der Support-Bibliothek 24.2.1

Ich habe dieses Problem seit 24.2.0, aber jetzt verwende ich 24.2.1 und der Fehler ist immer noch hier, es funktioniert nur gut <= 24.1.1.

Ich habe einen verankerten FloatingActionButton so gemacht:

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/contact_coordinator_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:context="es.cocode.baseapp.contact.ContactFragment">

        <FrameLayout
            android:id="@+id/map_fragment_container"
            android:layout_width="match_parent"
            android:layout_height="198dp"
            android:layout_marginBottom="210dp">

            <fragment
                android:id="@+id/map_fragment"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

        </FrameLayout>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab_fullscreen_map"
            android:src="@drawable/ic_fullscreen_white_48dp"
            android:layout_width="56dp"
            android:layout_height="56dp"
            android:layout_margin="@dimen/fab_margin"
            app:layout_anchor="@id/map_fragment_container"
            app:layout_anchorGravity="bottom|end" />

    </android.support.design.widget.CoordinatorLayout>

</ScrollView>

Es funktioniert normalerweise so:

Aber manchmal erscheint der Fehler und der Anker funktioniert nicht:

Gibt es eine Möglichkeit, dies zu lösen, oder sollte ich warten, bis dieser Fehler behoben ist, und stattdessen 24.1.1 verwenden?

Antworten auf die Frage(10)

Ihre Antwort auf die Frage