gpt4 book ai didi

android - android键盘上没有 "Go"按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:51:43 25 4
gpt4 key购买 nike

我使用 android:imeOptions="actionGo"作为编辑文本框。它在 Android 默认键盘上正常工作。我收到“开始”按钮。但是,如果我尝试在我的 LG 设备上将输入法更改为 swype 或 LG 键盘,我不会得到“开始”,而是得到输入符号。为什么会这样。无论我使用的是 wt 键盘,我都想要 Go 按钮。请问有人可以帮助我吗?

最佳答案

请在您的编辑文本中添加以下两行:

<EditText
android:singleLine="true"
android:imeOptions="actionGo"/>

这将启用软键盘上的 Go 按钮

然后收听 Go 按钮 Add

editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId== EditorInfo.IME_ACTION_GO){
//perfrom your action
}
return false;
}
});

关于android - android键盘上没有 "Go"按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7385634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com