android 如何使底片在合上时不完全隐藏?

8ljdwjyq  于 2023-03-21  发布在  Android
关注(0)|答案(1)|浏览(130)
<?xml version="1.0" encoding="utf-8"?>
<com.app.implementation.bottomsheet.BrowserBottomSheet xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:focusable="true"
    app:behavior_hideable="true"
    app:layout_behavior="@string/bottom_sheet_behavior"
    />

当我关闭底部的床单,我不希望它完全隐藏,顶部部分应该是可见的,可以用来拉它回来。这是可能的?
上方视图将位于另一布局内

5uzkadbs

5uzkadbs1#

我找到答案了。我们可以用app:behavior_peekHeight="50dp"

相关问题