gpt4 book ai didi

java - 在我的键盘中使用来自编辑文本的字符串

转载 作者:行者123 更新时间:2023-11-29 09:02:00 26 4
gpt4 key购买 nike

我在玩软键盘。

我把它添加到首选项

<EditTextPreference
android:name="Custom ket"
android:summary="Set up a custom key"
android:title="Custom key"
android:key="Customkey" />

我需要做什么才能将其用作

中的字符串
<Key android:keyOutputText="string" android:keyLabel="custom key" />

谁能帮我解决这个问题?

最佳答案

成功了

添加到 SoftKeyboard.java

private void handleCustomkey() {
SharedPreferences app_preferences =
getSharedPreferences("com.keyboard.test_preferences", Context.MODE_PRIVATE);

String ck = app_preferences.getString("Customkey", "0");
this.getCurrentInputConnection().commitText(ck, 1);


}

@onkey

    } else if (primaryCode == LatinKeyboardView.KEYCODE_CUSTOMKEY) {
handleCustomkey();
return;

添加到 LatinKeyboardView.java

static final int KEYCODE_CUSTOMKEY = -120;

添加到 qwerty.xml

    <Key android:codes="-120" android:keyLabel="Custom" />

添加到settings.xml

<EditTextPreference
android:name="Custom key"
android:summary="Set up a custom key"
android:title="Custom key"
android:key="Customkey" />

关于java - 在我的键盘中使用来自编辑文本的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16854328/

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