Android两种方法使用BottomSheet

Posted 怪兽N

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android两种方法使用BottomSheet相关的知识,希望对你有一定的参考价值。

方法1 BottomSheetBehavior

#xml 
#app:behavior_hideable="true" 这个不用会闪退
#app:behavior_peekHeight弹出高度

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 
      ...
    <LinearLayout
        android:id="@+id/meter_bottom_menu"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:behavior_hideable="true"
        app:layout_behavior="@string/bottom_sheet_behavior"
        android:orientation="vertical">
	...
</androidx.coordinatorlayout.widget.CoordinatorLayout>
//java
private BottomSheetBehavior<LinearLayout> behavior;
...
        LinearLayout bottomMenu = findViewById(R.id.meter_bottom_menu);
        behavior = BottomSheetBehavior.from(bottomMenu);
        behavior.setState(BottomSheetBehavior.STATE_HIDDEN);
        behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() 		 {
            @Override
            public void onStateChanged(@NonNull View view, int i) {
                
            }

            @Override
            public void onSlide(@NonNull View view, float v) {

            }
        });
...
        if (behavior.getState() == BottomSheetBehavior.STATE_HIDDEN) {
            behavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
        } else {
            behavior.setState(BottomSheetBehavior.STATE_HIDDEN);
        }

方法2 BottomSheetDialog

	val view = View.inflate(this, R.layout.bottom_sheet_dialog1, null)
    ......
    val dialog = BottomSheetDialog(this)
    dialog.setContentView(view)
    val behavior = BottomSheetBehavior.from(view.parent as View)
        
 //when click
 	behavior.state = BottomSheetBehavior.STATE_HALF_EXPANDED                       
    dialog.show()

以上是关于Android两种方法使用BottomSheet的主要内容,如果未能解决你的问题,请参考以下文章

我们如何在 android 的 RecyclerView 片段中使用 bottomSheet?

Android 原生BottomSheet 介绍及坑

圆角不适用于 Material Design Bottomsheet Android [重复]

如何在 Android Kotlin 中创建 BottomSheet

Android BottomSheet 覆盖了锚定 ImageView 的一半

Android 带圆角和背景的BottomSheet