通过手写输入编写的文本未输入WearOS上的EditText中

时间:2019-01-19 21:45:37

标签: android kotlin android-edittext android-xml wear-os

我正在为WearOS编写一个包含EditText组件的应用程序。当我使用键盘将任何文本写入文本字段时,当键盘关闭时,它会保留在文本框中,但是当我使用手写输入并单击复选标记输入文本时,它会完全消失。

此刻,我完全陷入了困境。我检查了Logcat并发现以下错误:

 E/SpannableStringBuilder: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length

该错误仅在使用手写输入而不是不是键盘时发生。

如果可以的话,这里是EditText XML布局代码。我还没有添加任何后端代码来对文本进行任何操作。

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/multiAutoCompleteTextView"
    android:layout_marginTop="4dp"
    app:layout_constraintTop_toBottomOf="@+id/textView"
    android:layout_marginEnd="8dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    android:layout_marginStart="8dp"
    android:hint="@string/searchBoxPlaceholder"
    />

当然,这不应该发生。来自手写输入的文本应放置在EditText中,但不是。我只是从手表上获得屏幕记录-我将在几分钟内通过链接更新此帖子。

视频链接:https://drive.google.com/uc?id=1YO4cWbLwuXiZeXM95FtIJYYzYzYG3jwJ

0 个答案:

没有答案