支持库24.2.1中锚定FloatingActionButton的错误

时间:2016-09-20 17:08:12

标签: android android-support-library android-design-library androiddesignsupport floating-action-button

我从24.2.0开始就遇到过这个问题,但是现在我正在使用24.2.1并且bug仍然在这里,它只能运行良好< = 24.1.1。

我有一个像这样的锚定FloatingActionButton:

<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>

它通常是这样的:

FAB working well

但有时会出现错误并且锚点不起作用:

FAB not working

有没有办法解决这个问题,还是应该等到这个bug得到解决并改为使用24.1.1?

5 个答案:

答案 0 :(得分:4)

至于2017年5月2日(25.3.1),该错误仍未修复。在尝试了所有解决方案之后,唯一适合我的解决方案是:

yourView.post(new Runnable() { 
    @Override 
    public void run() { 
        yourView.requestLayout(); 
    } 
}); 

其中yourView是锚定视图。

答案 1 :(得分:2)

解决方案是在XML中将FloatingActionButton可见性设置为GONE,当地图准备好后,将其设置回VISIBLE

@Override
public void onMapReady(GoogleMap googleMap) {
    . . .
    yourFAB.setVisibility(View.VISIBLE);
}

编辑:这是此bug的解决方法。

答案 2 :(得分:2)

标记为固定 问题已修复并在支持库的26.0.0版本中发布。

答案 3 :(得分:1)

Bug reported并希望尽快解决。请加星标。

答案 4 :(得分:0)

好吧,我的朋友还有另一种使用最新支持库的方法,而不是使用任何其他东西。

请使用此 -

<android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_margin="@dimen/activity_horizontal_margin"
        android:src="@drawable/ic_add"
        android:layout_gravity="center_vertical|center_horizontal"
        app:layout_anchor="@+id/appBar"
        app:layout_anchorGravity="bottom|right" />