如何在Android中使用多个imeOptions

如何在Android中使用多个imeOptions

本文介绍了如何在Android中使用多个imeOptions的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在Android xml中使用超过1个imeOptions?对于相同的text field.

Is it possible to use more then 1 imeOptions in Android xml ? for the same text field.

例如

<EditText
    android:id="@+id/mywriting"
    android:imeOptions="actionDone"
    android:imeOptions="autoText"/>

现在它给我一个错误,说1 imeOptions has already been used,我不能再使用了

Right now it is giving me an error, saying 1 imeOptions has already been used and I can't use any more

推荐答案

使用|结合起来,像这样:

Use | to combine, like that:

android:imeOptions="actionDone|actionNext"

在您的情况下,问题出在 autoText ,对于imeOptions而言,这不是有效值.

In your case, the problem is with autoText, which is not a valid value for imeOptions.

这篇关于如何在Android中使用多个imeOptions的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 17:37