CoordinatorLayout.Behavior未被调用

时间:2015-12-29 18:17:18

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

我正在尝试在自定义FAB菜单上实现协调器布局行为,如here所述

程序编译并运行,但从不调用协调器布局行为函数,因此SnackBar覆盖了FAB菜单。

关于它的唯一其他问题是here,但提供的解决方案不是我的问题。

这是xml:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.getbase.floatingactionbutton.FloatingActionsMenu
        android:id="@+id/fab_host"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        app:layout_behavior="com.companionfree.quizinator.couple.shared.FloatingActionMenuBehavior"
        fab:fab_icon="@drawable/ic_add_white_24dp"
        fab:fab_addButtonColorNormal="@color/colorAccent">


        <com.getbase.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab_host_bluetooth"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            fab:fab_colorNormal="@color/colorAccent"
            fab:fab_icon="@drawable/ic_bluetooth_white_24dp"/>


        <com.getbase.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab_host_nearby"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            fab:fab_colorNormal="@color/colorAccent"
            fab:fab_icon="@drawable/ic_signal_wifi_4_bar_white_24dp"/>


    </com.getbase.floatingactionbutton.FloatingActionsMenu>
</android.support.design.widget.CoordinatorLayout>

这是我的CoordinatorLayout.Behavior类:

public class FloatingActionMenuBehavior extends CoordinatorLayout.Behavior<FloatingActionsMenu> {

  public FloatingActionMenuBehavior(Context context, AttributeSet attrs) {}

  @Override
  public boolean layoutDependsOn(CoordinatorLayout parent, FloatingActionsMenu child, View dependency) {
    return dependency instanceof Snackbar.SnackbarLayout;
  }

  @Override
  public boolean onDependentViewChanged(CoordinatorLayout parent, FloatingActionsMenu child, View dependency) {
      float translationY = Math.min(0, dependency.getTranslationY() - dependency.getHeight());
    child.setTranslationY(translationY);
    return true;
  }
}

没有错误,小吃栏显示,它只是覆盖了FAB菜单......我似乎无法弄清楚错误的位置。

1 个答案:

答案 0 :(得分:3)

对于推动FAB的小吃店,你需要将FloatingActionsMenu视图传递给snackBar。

 Snackbar.make(FloatingActionsMenuVIEWINSTANCEHERE, mErrorMessage, Snackbar.LENGTH_LONG);

然后调用show()方法。这应该解决问题