gpt4 book ai didi

android - 如何链接键盘上的按钮以启动新屏幕?

转载 作者:行者123 更新时间:2023-11-30 01:40:15 25 4
gpt4 key购买 nike

<Key android:codes="???" android:keyLabel="e" android:keyHeight= "7%p" android:horizontalGap=".85%p" android:keyWidth= "8%p"/>

我的自定义键盘上有一个键,但我想在按下它时打开一个显示选项列表的新窗口。例如,新窗口将显示一个引号列表,当您按下该列表时,它会为您键入。我正在考虑在 OnKey 方法中放置一个案例来听一段代码,但我不确定我应该使用哪个代码。另外,新窗口应该是一个 Activity 吗?

最佳答案

emailAddressEt.setImeOptions(EditorInfo.IME_ACTION_DONE);
emailAddressEt.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId,KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
Intent intent = new Intent(this,NewActivity.class);
startActivity(intent);
}
return false;
}
});

关于android - 如何链接键盘上的按钮以启动新屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34584685/

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