材质FAB变形

时间:2018-12-18 16:09:29

标签: android material-design floating-action-button

根据material.io,浮动操作按钮可以变成this之类的操作菜单。有什么方法可以只使用素材库(没有第三方库)吗?

我尝试过this库,但是在菜单关闭后,它会根据底部的应用栏中断晶圆厂的位置。

这就是我得到的结果 Fab menu

代码:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <androidx.appcompat.widget.Toolbar
            app:layout_scrollFlags="scroll|enterAlways|snap"
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?actionBarSize"/>
    </com.google.android.material.appbar.AppBarLayout>
    <androidx.viewpager.widget.ViewPager
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bottomBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:fabAlignmentMode="end"
        app:backgroundTint="?colorPrimary"
        android:layout_gravity="bottom">
        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/transparent"/>
    </com.google.android.material.bottomappbar.BottomAppBar>
    <com.google.android.material.floatingactionbutton.FloatingActionButton
        app:useCompatPadding="true"
        app:layout_anchor="@id/bottomBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/fab"/>
    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#53000000"
        android:visibility="invisible"
        android:id="@+id/overlay"/>
    <io.codetail.widget.RevealFrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <io.files.view.MenuCardView
            android:id="@+id/menu"
            android:visibility="invisible"
            android:layout_margin="56dp"
            android:layout_gravity="bottom|end"
            android:layout_width="wrap_content"
            app:cardUseCompatPadding="true"
            app:menu="@menu/new_tab_options"
            android:layout_height="wrap_content"/>
    </io.codetail.widget.RevealFrameLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

MainActivity.kt

import android.os.Bundle
import android.view.View
import androidx.appcompat.app.AppCompatActivity
import com.konifar.fab_transformation.FabTransformation
import kotlinx.android.synthetic.main.activity_main.*

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        overlay.setOnClickListener {
            FabTransformation.with(fab)
                .setOverlay(it)
                .transformFrom(menu)
        }
        fab.setOnClickListener {
            FabTransformation.with(it)
                .setOverlay(overlay)
                .transformTo(menu)
        }
    }

    override fun onBackPressed() {
        if(menu.visibility== View.VISIBLE){
            FabTransformation.with(fab)
                .setOverlay(overlay)
                .transformFrom(menu)
        }else super.onBackPressed()
    }
}

1 个答案:

答案 0 :(得分:2)

找到一个解决方案: 使用com.google.android.material.transformation.FabTransformationSheetBehavior进行工作表布局,使用com.google.android.material.transformation.FabTransformationScrimBehavior进行覆盖视图。要支持精美的动画,请使用com.google.android.material.transformation.TransformationChildCardcom.google.android.material.transformation.TransformationChildLayout作为图纸的根视图。要将fab转换为工作表集isExpanded,将fab转换为true,然后将其向后转换,请将isExpanded转换为false