【发布时间】:2019-07-30 05:13:30
【问题描述】:
InputMethodManager 类中的 showSoftInputFromInputMethod 方法在 Android P 中已弃用。
根据documentation,我们应该对Android P 及更高版本使用InputMethodService.requestShowSelf(int) 方法。
现在的问题是我们如何获得InputMethodService 类的引用。
我尝试创建一个新对象并在其上调用requestShowself(),但它不起作用。
InputMethodService inputMethodService = new InputMethodService();
inputMethodService.requestShowSelf(0);
对于 API 28 及更高版本的弃用,我们如何使用建议的替代方法?
【问题讨论】:
标签: android android-keypad android-input-method android-9.0-pie inputmethodmanager