Android浮动操作按钮未返回初始位置

时间:2016-01-29 00:04:15

标签: android floating-action-button android-snackbar

如果FAB(浮动操作按钮)隐藏在小吃栏出现之前(在CoordinatorLayout中),那么下次我显示FAB时,它将被绘制在旧位置(不会向下移动到原始位置)。如果在小吃店消失时可以看到FAB,那么一切都按预期工作。我错过了什么或者它是一个错误吗?

UPD:根据要求,这是一个最小的例子。我将把最重要的部分放在这里,并找到一个完整的例子on my github

这只是Android模板Activity项目中一个稍微修改过的示例。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
    tools:context="coordination.fab.snackbar.test.testfabsnackbar.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <include layout="@layout/content_main" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

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

来自OnCreate的{​​{1}}方法(扩展MainActivity):

AppCompatActivity

基本上,我只是确保当小吃栏被隐藏时,操作按钮保持隐藏状态。

如果您需要更多信息,请告诉我。

UPD2 如果你偶然发现这个帖子并且不喜欢它 - 请告诉我我可以改进的地方。我真的很想知道如何克服这个问题。

UPD3 Android错误跟踪器中创建的问题已合并到this一个,应在下一个版本中修复

2 个答案:

答案 0 :(得分:2)

这已作为Support Library 23.2.0版本的一部分修复,related bug现已修复。

答案 1 :(得分:1)

在我看到你的帖子之前我没有意识到这个问题,但它也发生在我的应用程序中。

查看FloatingActionButton source我看到他们根据Snackbar设置了FAB的translationY,但是如果FAB可见,则仅设置。如果FAB不可见,则translationY不会改变,因此取决于它何时被隐藏并显示它可能最终被卡在错误的位置。

我刚刚完成并且似乎工作的是,如果合适,我自己重置翻译。

将快餐栏声明为类级别变量,以便我们检查其状态。

Snackbar snack;

然后在需要时使用它来制作小吃吧:

snack.make(...etc...).show();

然后,当我们调用fab.show()方法时,我们可以检查snack的状态并自行重置translationY。

        if(snack != null){
            if(!snack.isShown()) {
                //if the snackbar is not shown, make sure the fab is at the
                //original location
                fab.setTranslationY(0.0f);
            }
        }
        fab.show();

如果由于某种原因,FAB的正确translationY不是0.0,您可能希望使用fab.getTranslationY来保存正确的值,并在需要重置时使用它。