我正在使用MultiAutoCompleteTextView,它似乎可以正常使用以下异常:将焦点放在MultiAutoCompleteTextView中,点击' NEXT'软键盘上的键不会将焦点移动到下一个EditView字段。这是否存在已知问题?
答案 0 :(得分:2)
我在这里公布了最终结果 - 这是在SO之外的“办公时间”聊天中讨论的。
Ron的MultiAutoCompleteTextView
看起来像:
<MultiAutoCompleteTextView
android:id="@+id/etCreateMessageTo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:inputType="textEmailAddress"
android:hint=""
android:background="@drawable/edittext_rounded_corners"
/>
他正在采用android:imeOptions
的默认值并看到此行为。我建议他明确添加android:imeOptions="actionNext"
,事实证明这就是诀窍。