【发布时间】:2018-08-10 09:04:20
【问题描述】:
我的BottomSheetDialogFragment 打开时打开一半(意思是没有完全打开)。
fragment.show(supportFragmentManager, "my_frag")
- 我尝试了
NestedScrollView和behavior_peekHeight,但没有成功。 - 尝试不使用
NestedScrollView。只有LinearLayout。 - 尝试在
match_parent和wrap_content之间切换高度
我在BottomSheetDialogFragment 布局中有简单的RecyclerView。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
...
>
<android.support.v7.widget.RecyclerView
...
/>
【问题讨论】:
标签: android android-layout bottom-sheet