我可以像在 Word 中那样在 Android 中检查拼写吗?

发布于 2025-01-04 01:41:32 字数 142 浏览 0 评论 0原文

如果您在 MS Word 中输入任何内容,它不会自动完成或自动更正您的单词,它只是在错误的单词下划线。

Android 能否实现类似的功能。

我搜索了很多论坛和网站,它们都将检查拼写称为自动完成或自动更正。

感谢您的帮助

If you type anything in MS Word, it does not do auto-complete or auto correct your word, it simply underlines the wrong words.

Can a similar functionality be achieved in Android.

I have searched many forums and sites, they all refer to check spell as either auto-complete or auto-correct.

Thanks for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦巷 2025-01-11 01:41:32

请检查 SpellCheckerSession
http://developer.android.com/reference/android/view/textservice /SpellCheckerSession.html

另外,您应该在提问之前尝试使用 Google。

Please check SpellCheckerSession out
http://developer.android.com/reference/android/view/textservice/SpellCheckerSession.html

also, you should try to use Google before asking questions.

来世叙缘 2025-01-11 01:41:32

简单回答:

String text = textView.getText();
if (!listOfAcceptableText.contains(text)) {
    SpannableString content = new SpannableString(text);
    content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
    textView.setText(content);
}

Simple answer:

String text = textView.getText();
if (!listOfAcceptableText.contains(text)) {
    SpannableString content = new SpannableString(text);
    content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
    textView.setText(content);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文