SnackBar涵盖了FAB

时间:2015-07-29 11:05:12

标签: android android-coordinatorlayout floating-action-button android-support-design android-snackbar

我的布局与this tutorial完全相同。但是在本教程中我们使用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();

2 个答案:

答案 0 :(得分:2)

你遵循的例子非常不走运。 FloatingActionButtonCoordinatorLayout的默认行为是在您显示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 repository中的类,我在我自己编写代码并想要测试它之后就找到了它。他们只是忘了更新博客文章: - /

答案 1 :(得分:0)

你试过这个吗?

...
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()方法。