当您添加
FloatingActionButton
作为您的孩子时CoordinatorLayout
然后将CoordinatorLayout
传递给您Snackbar.make()
来电 - 而不是显示在上面的小吃店 浮动操作按钮,FloatingActionButton
...自动 随着小吃店的动画向上移动并返回其位置 当小吃店动画出来时
我完全按照那里所描述的那样做,但FAB不会向上移动。 (Snackbar可以刷掉,这意味着CoordinatorLayout知道它。)
UPD
布局:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/action_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.ActionBar"/>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/action_toolbar"/>
</RelativeLayout>
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginTop="?attr/actionBarSize"
android:background="@color/theme_primary_darker_color"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
</android.support.v4.widget.DrawerLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/toolbar_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_navigation_white_24dp"
android:layout_margin="16dp"
android:visibility="gone"
app:borderWidth="0dp"
app:elevation="6dp"
app:layout_anchor="@id/action_toolbar"
app:layout_anchorGravity="bottom|right|end"
app:pressedTranslationZ="12dp"/>
</android.support.design.widget.CoordinatorLayout>
代码:
mCoordinatorLayout = (CoordinatorLayout) findViewById(R.id.main_content);
...
Snackbar.make(mCoordinatorLayout, R.string.waypoint_deleted, Snackbar.LENGTH_LONG).show();
答案 0 :(得分:0)
我有一个类似的问题,我的fab按钮不会向下移动。花了一些时间,但这是因为我在开发者选项中有动画。希望你知道这个帖子有点过时了。
答案 1 :(得分:0)
我遇到的问题是,在零食店消失之后,晶圆厂不会回到原来的位置。确保打开 Animator持续时间刻度。一个好的默认值是1x。
该设置可在以下位置找到:
我的一个模拟器上关闭了此设置以及其他动画设置。重新打开它可以让晶圆厂正常工作。