gpt4 book ai didi

android - Material FAB 变形

转载 作者:搜寻专家 更新时间:2023-11-01 09:22:18 25 4
gpt4 key购买 nike

根据material.io float 操作按钮可以变身为操作菜单,如 this .有什么方法可以只使用 Material 库(没有第三方库)吗?

我试过了this库,但它会在菜单关闭后根据底部应用栏打破 fab 位置。

这是我得到的结果 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>

主要 Activity .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()
}
}

最佳答案

刚刚找到解决方案:使用 com.google.android.material.transformation.FabTransformationSheetBehavior 进行工作表布局,使用 com.google.android.material.transformation.FabTransformationScrimBehavior 进行叠加 View 。要支持漂亮的动画,请使用 com.google.android.material.transformation.TransformationChildCardcom.google.android.material.transformation.TransformationChildLayout 作为工作表的 Root View 。将 fab 转换为工作表集 isExpanded 到 fab 到 true 并将其向后转换设置 isExpandedfalse

关于android - Material FAB 变形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53836978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com