gpt4 book ai didi

java - 如何以编程方式显示表情符号键盘 android?

转载 作者:行者123 更新时间:2023-12-01 06:06:27 28 4
gpt4 key购买 nike

我有一个笑脸按钮,我想创建笑脸按钮而不是直接在Android上显示表情符号键盘。有什么建议在 onClick 事件中显示表情符号键盘吗? here the scenario

最佳答案

public static void chooseKeyboard(Activity activity) {
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);

View view = activity.getCurrentFocus();

if (view == null) {
view = new View(activity);
}
imm.showInputMethodPicker();
}

调用它并选择键盘。

关于java - 如何以编程方式显示表情符号键盘 android?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43537988/

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