支持库 24.2.1 中锚定 FloatingActionButton 的错误
Bug with anchored FloatingActionButton in support library 24.2.1
我从 24.2.0 开始就遇到这个问题,但现在我使用的是 24.2.1 并且错误仍然存在,它只适用于 <= 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>
通常是这样的:
但有时会出现错误,锚点不起作用:
有没有办法解决这个问题,还是我应该等到这个错误得到修复,然后改用 24.1.1?
解决方案是在 XML 中将 FloatingActionButton
可见性设置为 GONE
,并在地图准备就绪后将其设置回 VISIBLE
。
@Override
public void onMapReady(GoogleMap googleMap) {
. . .
yourFAB.setVisibility(View.VISIBLE);
}
编辑: 这是 bug.
的解决方法
Bug reported 希望尽快修复。请给它加星标。
好吧,我的朋友,还有另一种方法可以使用最新的支持库而不使用任何其他东西。
就用这个-
<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" />
至于 5/2/2017 (25.3.1),该错误仍未修复。在尝试了所有解决方案之后,唯一对我有用的是:
yourView.post(new Runnable() {
@Override
public void run() {
yourView.requestLayout();
}
});
其中 yourView
是定位视图。
标记为固定
问题已修复并在 26.0.0 版本的支持库中发布。
我从 24.2.0 开始就遇到这个问题,但现在我使用的是 24.2.1 并且错误仍然存在,它只适用于 <= 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>
通常是这样的:
但有时会出现错误,锚点不起作用:
有没有办法解决这个问题,还是我应该等到这个错误得到修复,然后改用 24.1.1?
解决方案是在 XML 中将 FloatingActionButton
可见性设置为 GONE
,并在地图准备就绪后将其设置回 VISIBLE
。
@Override
public void onMapReady(GoogleMap googleMap) {
. . .
yourFAB.setVisibility(View.VISIBLE);
}
编辑: 这是 bug.
的解决方法Bug reported 希望尽快修复。请给它加星标。
好吧,我的朋友,还有另一种方法可以使用最新的支持库而不使用任何其他东西。
就用这个-
<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" />
至于 5/2/2017 (25.3.1),该错误仍未修复。在尝试了所有解决方案之后,唯一对我有用的是:
yourView.post(new Runnable() {
@Override
public void run() {
yourView.requestLayout();
}
});
其中 yourView
是定位视图。
标记为固定 问题已修复并在 26.0.0 版本的支持库中发布。