BottomSheet 打开时显示键盘
Show keyboard when BottomSheet opens
我希望在我的应用程序中打开某些片段时键盘自动出现。为此,我创建了一个扩展函数 showKeyboard()
:
fun EditText.showKeyboard() {
this.requestFocus()
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager?
imm?.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT)
}
这个函数在fragments中工作的很好,但是由于某些原因,它在BottomSheets中不工作。
以下是我在片段中使用它的方式(有效 ✅):
override fun onResume() {
super.onResume()
binding.nickEdit.showKeyboard()
}
以下是我在 BottomSheet 中的使用方法(这行不通 ❌):
override fun onResume() {
super.onResume()
binding.searchEdit.showKeyboard()
}
我已经尝试将 showkeyboard()
功能添加到 onViewCreated()
,但是当 BottomSheet 打开时键盘仍然没有出现。我该如何解决这个问题?
我通过将 windowSoftInputMode
属性添加到我的 BottomSheet 样式并将值设置为 adjustResize
解决了这个问题。这是我的 BottomSheet 样式的完整版本:
<style name="MyBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/MyBottomsheetStyle</item>
<item name="colorPrimary">@color/white</item>
<item name="colorAccent">@color/white</item>
<item name="colorControlNormal">@color/white</item>
<item name="android:windowIsFloating">false</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSoftInputMode">adjustResize</item>
</style>
<style name="MyBottomsheetStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/background_bottom_sheet</item>
</style>
我希望在我的应用程序中打开某些片段时键盘自动出现。为此,我创建了一个扩展函数 showKeyboard()
:
fun EditText.showKeyboard() {
this.requestFocus()
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager?
imm?.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT)
}
这个函数在fragments中工作的很好,但是由于某些原因,它在BottomSheets中不工作。
以下是我在片段中使用它的方式(有效 ✅):
override fun onResume() {
super.onResume()
binding.nickEdit.showKeyboard()
}
以下是我在 BottomSheet 中的使用方法(这行不通 ❌):
override fun onResume() {
super.onResume()
binding.searchEdit.showKeyboard()
}
我已经尝试将 showkeyboard()
功能添加到 onViewCreated()
,但是当 BottomSheet 打开时键盘仍然没有出现。我该如何解决这个问题?
我通过将 windowSoftInputMode
属性添加到我的 BottomSheet 样式并将值设置为 adjustResize
解决了这个问题。这是我的 BottomSheet 样式的完整版本:
<style name="MyBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/MyBottomsheetStyle</item>
<item name="colorPrimary">@color/white</item>
<item name="colorAccent">@color/white</item>
<item name="colorControlNormal">@color/white</item>
<item name="android:windowIsFloating">false</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSoftInputMode">adjustResize</item>
</style>
<style name="MyBottomsheetStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/background_bottom_sheet</item>
</style>