Questions tagged «android-input-method»


11
为横向模式的软键盘输入禁用全屏编辑视图?
在使用软键盘的Android设备上,我想防止在横向模式下出现全屏键盘编辑视图(如下所示)(即,我只想看到软键盘本身及其后的视图)。 我假设可以使用上的setExtractViewShown(false)方法来实现InputMethodService,但是我无法访问此方法的默认实例,也不想实现自定义输入法。 编辑添加:输入将进入的视图不是一个视图TextView(View具有自定义InputConnection实现),因此android:imeOptions="flagNoExtractUi"在这里不起作用。

12
当将AlertDialog.Builder与EditText一起使用时,软键盘不会弹出
我使用AlertDialog.Builder来创建一个输入框,使用EditText作为输入方法。 不幸的是,尽管EditText成为焦点,但软键盘不会弹出,除非您再次明确触摸它。 有办法强迫它弹出吗? 在(AlertDialog.Builder).show();之后,我尝试了以下方法 但无济于事。 InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); mgr.showSoftInput(input, InputMethodManager.SHOW_FORCED); 有人可以帮忙吗? 谢谢!!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.