SnackBar covers FAB



我的布局与本教程完全相同。但在本教程中,我们使用app:layout_behavior="pl.michalz.hideonscrollexample.ScrollingFABBehavior"在Fab XML中,所以SnackBar覆盖了Fab。没有这个代码,Fab不会移动,随后是RecyclerView。如何正确显示SnackBar ?

Snackbar.make(getActivity().findViewById(R.id.coordinatorLayout),
adapter.getNewsList().get(position).getTitle(), Snackbar.LENGTH_LONG).show();

您所遵循的示例非常不幸。CoordinatorLayout中的FloatingActionButton的默认行为是在显示SnackBar时向上移动。由于这段代码覆盖了Behavior,因此失去了这个特性,因为这些方法从不调用它们的超类实现。显然,作者没有考虑到这一点。但是,您可以修改ScrollingFABBehavior来扩展原来的Behavior,从而支持SnackBar:

public class ScrollingFABBehavior extends FloatingActionButton.Behavior {
    private int toolbarHeight;
    public ScrollingFABBehavior(Context context, AttributeSet attrs) {
        super();
        this.toolbarHeight = Utils.getToolbarHeight(context);
    }
    @Override
    public boolean layoutDependsOn(CoordinatorLayout parent, FloatingActionButton fab, View dependency) {
        return super.layoutDependsOn(parent, fab, dependency) || (dependency instanceof AppBarLayout);
    }
    @Override
    public boolean onDependentViewChanged(CoordinatorLayout parent, FloatingActionButton fab, View dependency) {
        boolean returnValue = super.onDependentViewChanged(parent, fab, dependency);
        if (dependency instanceof AppBarLayout) {
            CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams) fab.getLayoutParams();
            int fabBottomMargin = lp.bottomMargin;
            int distanceToScroll = fab.getHeight() + fabBottomMargin;
            float ratio = (float)dependency.getY()/(float)toolbarHeight;
            fab.setTranslationY(-distanceToScroll * ratio);
        }
        return returnValue;
    }
}    

这实际上是来自示例的github存储库的类,我发现它只是在我自己编码相同并想测试它之后。他们只是忘了更新博客:-/

你试过吗?

...
View view = inflater.inlfate(R.layout.my_layout, parent, false);
...
Snackbar.make(view.findViewById(R.id.fab),
        adapter.getNewsList().get(position).getTitle(), Snackbar.LENGTH_LONG).show();
...
return view;

我假设您在Fragment中调用上述代码,因此我添加了view变量来调用findViewById()方法。

相关内容

  • 没有找到相关文章

最新更新