如何使用Edittext及其下方的按钮调整BottomSheet的大小?

时间:2018-06-21 13:39:47

标签: android button android-edittext dialog bottom-sheet

我想构建一个BottomSheet以显示带有按钮的视图并编辑文本。如果我单击Edittext,则会显示键盘,但它会隐藏编辑文本下方的按钮。 这些图片应该显示我的问题

1)普通视图中的“ BottomSheet”-“第一张图片”

2)BottomSheet隐藏了按钮“第二张图片”

这是我用于创建BottomSheet的代码

addNewListBottomSheet = new BottomSheetDialog(this, R.style.BottomSheetDialogTheme);
        View bottomSheetRootView = getLayoutInflater().inflate(R.layout.addnewlist_bottomsheet_layout, null);
        addNewListBottomSheet.setContentView(bottomSheetRootView);

我还添加了特定样式

<style name="BottomSheet" parent="@style/Widget.Design.BottomSheet.Modal">
    <item name="android:background">@drawable/bottomsheet_round_bg</item>
</style>

<style name="BaseBottomSheetDialog" parent="@style/Theme.Design.Light.BottomSheetDialog">
    <item name="android:windowIsFloating">true</item>
    <item name="bottomSheetStyle">@style/BottomSheet</item>
</style>

<style name="BottomSheetDialogTheme" parent="BaseBottomSheetDialog">

我还尝试通过

更改行为
addNewListBottomSheet.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); 

但是它不起作用。希望得到答案。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

将底部工作表的所有内容放在滚动视图中,然后尝试。

<ScrollView layout_behavior = "@string/bottom_sheet....">
<your layout/>
<ScrollView>