我有一个活动,在这个活动中,我有一个BottomSheet。 在底部布局中,editext下方有一个按钮。 当打开键盘时,在这种情况下按钮隐藏在键盘后面。当我滚动然后按钮可见。我想要的是按钮应始终位于键盘上方
答案 0 :(得分:0)
这是软键盘的自动完成建议区域。对您的 inputType 属性使用“ textNoSuggestions ”标志。
<EditText android:id="@+id/inputName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textNoSuggestions"
android:hint="@string/inputName" />
注意:在这里您可以像这样在 inputType 中组合多个标志
android:inputType="textPersonName|textNoSuggestions"
只需在 inputType 属性的末尾添加 | textNoSuggestions 标志。
答案 1 :(得分:0)
将此行添加到您的Edittext
android:inputType="textNoSuggestions"