Android 浮动操作按钮未返回到初始位置
Android floating action button not returning to initial position
如果 FAB(浮动操作按钮)在快餐栏出现之前隐藏(在 CoordinatorLayout 中),那么下次我显示 FAB 时,它会在旧位置绘制(不会向下移动到原始位置)。如果在 snackbar 消失时 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>
还有一个来自我的 MainActivity
的 OnCreate
方法(扩展 AppCompatActivity
):
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
final FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
fab.hide();
Snackbar.make(view, "blah", Snackbar.LENGTH_SHORT).show();
new Timer().schedule(new TimerTask() {
@Override
public void run() { fab.show(); }
}, 3000);
}
});
}
基本上,我只是确保在隐藏快餐栏时操作按钮保持隐藏状态。
如果您需要更多信息,请告诉我。
UPD2 如果您无意中发现了这个话题并且不喜欢它 - 请告诉我可以改进的地方。我真的很想知道如何解决这个问题。
UPD3 Android 错误跟踪器中创建的问题已合并到 this 中,应该在下一个版本中修复
直到看到您的 post,我才意识到我遇到了这个问题,但它也发生在我的应用程序中。
查看 FloatingActionButton source 我看到他们根据 Snackbar 设置 FAB 的 translationY,但是 只有 如果 FAB 可见。如果 FAB 不可见,则 translationY 不会更改,因此取决于它何时隐藏和显示,它最终可能会卡在错误的位置。
我刚刚所做的似乎有效,就是在适当的情况下自己重置 translationY。
将小吃店声明为 class 级别变量,以便我们检查其状态。
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 来保存正确的值并在需要重置时使用它。
这已作为 Support Library 23.2.0 release and the related bug 的一部分得到修复。
如果 FAB(浮动操作按钮)在快餐栏出现之前隐藏(在 CoordinatorLayout 中),那么下次我显示 FAB 时,它会在旧位置绘制(不会向下移动到原始位置)。如果在 snackbar 消失时 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>
还有一个来自我的 MainActivity
的 OnCreate
方法(扩展 AppCompatActivity
):
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
final FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
fab.hide();
Snackbar.make(view, "blah", Snackbar.LENGTH_SHORT).show();
new Timer().schedule(new TimerTask() {
@Override
public void run() { fab.show(); }
}, 3000);
}
});
}
基本上,我只是确保在隐藏快餐栏时操作按钮保持隐藏状态。
如果您需要更多信息,请告诉我。
UPD2 如果您无意中发现了这个话题并且不喜欢它 - 请告诉我可以改进的地方。我真的很想知道如何解决这个问题。
UPD3 Android 错误跟踪器中创建的问题已合并到 this 中,应该在下一个版本中修复
直到看到您的 post,我才意识到我遇到了这个问题,但它也发生在我的应用程序中。
查看 FloatingActionButton source 我看到他们根据 Snackbar 设置 FAB 的 translationY,但是 只有 如果 FAB 可见。如果 FAB 不可见,则 translationY 不会更改,因此取决于它何时隐藏和显示,它最终可能会卡在错误的位置。
我刚刚所做的似乎有效,就是在适当的情况下自己重置 translationY。
将小吃店声明为 class 级别变量,以便我们检查其状态。
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 来保存正确的值并在需要重置时使用它。
这已作为 Support Library 23.2.0 release and the related bug 的一部分得到修复。