gpt4 book ai didi

Android 在 XML 中设置 Bottom Sheet 单状态

转载 作者:行者123 更新时间:2023-11-29 16:30:54 24 4
gpt4 key购买 nike

XML 中的 Bottom Sheet 有几种状态:STATE_COLLAPSED、STATE_EXPANDED、STATE_HIDDEN 等。

如何使用可观察对象在 XML 中设置集合?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:behavior_hideable="true"
app:behavior_peekHeight="0dp"
app:layout_behavior="@string/bottom_sheet_behavior"
<!-- Example of State -->
app:bottom_state="@{viewModel.state}"
>
</LinearLayout>

显然,底部状态的名称不正确,但我正在努力弄清楚它是什么。

最佳答案

没有直接的 xml 值可用于 Bottom Sheet 状态。但是如果你想在数据绑定(bind)中做到这一点,还有另一种选择。为此创建一个绑定(bind)适配器并使用它。

@BindingAdapter("bottomSheetState")
fun bindingBottomSheet(container: LinearLayout, state:Int) {
val behavior=BottomSheetBehavior.from(container)
behavior.state = state
}

现在在xml中你可以使用它了

<LinearLayout
android:layout_height="340dp"
android:layout_width="match_parent"
app:behavior_hideable="true"
app:behavior_peekHeight="80dp"
app:bottomSheetState="@{model.uiState.bottomSheetState}"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">

关于Android 在 XML 中设置 Bottom Sheet 单状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55682256/

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