FloatingActionButton不会在CoordinatorLayout Android

时间:2015-08-02 21:32:00

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

我正在尝试FloatingActionButton跳跃效果(在CoordiantorLayout下)。触摸Fab时会调用小吃棒。然而,Fab并没有跳起来。我在哪里陷入困境?

fab.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            ViewCompat.animate(fab).rotation(r).withLayer().setDuration(1000).setInterpolator(interpolator).start();
            r+=45f;
            Snackbar.make(findViewById(R.id.relative_layout), "Test", Snackbar.LENGTH_LONG)
                    .show();

            return false;
        }
    });

布局文件

    <android.support.v4.widget.DrawerLayout    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".HomeActivity">



    <RelativeLayout
        android:id="@+id/relative_layout"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#00FF00"
            >
        </android.support.v7.widget.Toolbar>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="Large Text"
            android:layout_below="@id/toolbar"
            android:id="@+id/textView"
            android:background="#00FFFF"/>
        <android.support.design.widget.CoordinatorLayout
            android:id="@+id/coordinator_layout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentEnd="true">
        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_add_black"

            android:layout_marginBottom="10dp"
            android:layout_marginRight="10dp"
            app:elevation="6dp"
            app:pressedTranslationZ="12dp"/>
        </android.support.design.widget.CoordinatorLayout>
    </RelativeLayout>
</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:1)

嗯,CoordinatorLayout的尺寸为wrap_content / wrap_content,所以它不比FAB大。

此外,您传递给View的{​​{1}}无论如何都在Snackbar.make()之外。 CoordinatorLayout会在Snackbar及以上级别找到CoordinatorLayout,因此RelativeLayout将找不到您的Snackbar

我建议您更改布局,以便CoordinatorLayout包裹CoordinatorLayout

例如,此布局在右下方有一个FAB,如果我将RelativeLayout作为ListView的第一个参数提供,FAB将会滑出:

Snackbar.make()