java 从wear os键盘获取文本输入

kx1ctssn  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(193)
  1. @Override
  2. public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
  3. return new BaseInputConnection(this, true) {
  4. @Override
  5. public boolean finishComposingText() {
  6. super.finishComposingText();
  7. sendText(getEditable());
  8. getEditable().clear();
  9. return true;
  10. }
  11. @Override
  12. public boolean commitText(CharSequence text, int newCursorPosition) {
  13. super.commitText(text, newCursorPosition);
  14. Editable content = getEditable();
  15. sendText(content);
  16. content.clear();
  17. return true;
  18. }
  19. @Override
  20. public boolean deleteSurroundingText(int leftLength, int rightLength) {
  21. super.deleteSurroundingText(leftLength, rightLength);
  22. }
  23. }
  24. }

字符串
我在我的自定义视图中使用了这段代码。它在Android上工作,但在wear os上不工作。在键盘上打字什么也不做。没有一个Base输入连接方法被调用。
我想像普通键盘一样输入,我不想使用远程输入。
PS:我正在使用Galaxy Watch 4(佩戴OS 4)

nbewdwxp

nbewdwxp1#

  1. outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;

字符串
设置此选项解决了问题

相关问题