gpt4 book ai didi

java - 希望自定义键盘仅用于我的应用程序并在应用程序失去焦点时恢复以前的键盘

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:54:05 28 4
gpt4 key购买 nike

我按照this link中的精彩大纲制作了这个“自定义键盘”并且不使用 Eclipse。我使用的是 Android Studio (AS) 1.1.0。

这是我设备的屏幕截图:

enter image description here

唯一的问题是该过程需要更改语言和输入的设置,并且还需要更换所有应用程序的键盘。我不想要那个。我只希望我的应用程序为它自己更改键盘,然后在我的应用程序离开屏幕后立即恢复到以前的键盘,否则我将成为用户的巨大痛苦。与其这样做,我还不如添加按钮来执行我希望通过自定义键盘调用的按键操作。 (这并不可怕;用户只需拉下通知栏并选择选择输入法,但对大多数用户来说仍然过于干扰。)

结构如下:

enter image description here

键盘在 qwerty.xml 中通过执行大量操作进行了更改:

<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="60dp"
>
<Row>
<Key android:codes="49" android:keyLabel="1" android:keyEdgeFlags="left"/>
<Key android:codes="50" android:keyLabel="2"/>
<Key android:codes="51" android:keyLabel="3"/>
<Key android:codes="52" android:keyLabel="4"/>
<Key android:codes="53" android:keyLabel="5"/>
<Key android:codes="54" android:keyLabel="6"/>
<Key android:codes="55" android:keyLabel="7"/>
<Key android:codes="56" android:keyLabel="8"/>
<Key android:codes="57" android:keyLabel="9"/>
<Key android:codes="48" android:keyLabel="0" android:keyEdgeFlags="right"/>
</Row>
...

这是method.xml:

<?xml version="1.0" encoding="utf-8"?>
<input-method xmlns:android="http://schemas.android.com/apk/res/android">
<subtype
android:label= "@string/subtype_en_US"
android:imeSubtypeLocale= "en_US"
android:imeSubtypeMode= "keyboard"
/>
</input-method>

这是AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dslomer64.simplekeyboard">

<application

android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">

<service android:name=".SimpleIME"
android:label="@string/simple_ime"
android:permission="android.permission.BIND_INPUT_METHOD"
>
<meta-data android:name="android.view.im" android:resource="@xml/method"/>
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
</service>

</application>

</manifest>

添加到 list 中的 service 是通过 SimpleIME.java 中的代码获取软键盘的内容(省略空覆盖):

import android.inputmethodservice.InputMethodService;
import android.inputmethodservice.Keyboard;
import android.inputmethodservice.KeyboardView;
import android.media.AudioManager;
import android.view.KeyEvent;
import android.view.View;
import android.view.inputmethod.InputConnection;

public class SimpleIME extends InputMethodService
implements KeyboardView.OnKeyboardActionListener
{

private KeyboardView kv;
private Keyboard keyboard;

private boolean caps = false;

@Override
public View onCreateInputView() {
kv = (KeyboardView)getLayoutInflater().inflate(R.layout.keyboard, null);
keyboard = new Keyboard(this, R.xml.qwerty);
kv.setKeyboard(keyboard);
kv.setOnKeyboardActionListener(this);
return kv;
}
private void playClick(int keyCode){
AudioManager am = (AudioManager)getSystemService(AUDIO_SERVICE);
switch(keyCode){
case 32:
am.playSoundEffect(AudioManager.FX_KEYPRESS_SPACEBAR);
break;
case Keyboard.KEYCODE_DONE:
case 10:
am.playSoundEffect(AudioManager.FX_KEYPRESS_RETURN);
break;
case Keyboard.KEYCODE_DELETE:
am.playSoundEffect(AudioManager.FX_KEYPRESS_DELETE);
break;
default: am.playSoundEffect(AudioManager.FX_KEYPRESS_STANDARD);
}
}
@Override
public void onKey(int primaryCode, int[] keyCodes) {
InputConnection ic = getCurrentInputConnection();
playClick(primaryCode);
switch(primaryCode){
case Keyboard.KEYCODE_DELETE :
ic.deleteSurroundingText(1, 0);
break;
case Keyboard.KEYCODE_SHIFT:
caps = !caps;
keyboard.setShifted(caps);
kv.invalidateAllKeys();
break;
case Keyboard.KEYCODE_DONE:
ic.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER));
break;
default:
char code = (char)primaryCode;
if(Character.isLetter(code) && caps){
code = Character.toUpperCase(code);
}
ic.commitText(String.valueOf(code),1);
}
}
...
}

我想知道是否有人完成了我需要的工作:为一个应用程序实现自定义键盘并在失去屏幕焦点时恢复原始键盘。

最佳答案

I just want MY app to change the keyboard for ITSELF

这是输入法编辑器系统做不到的。用户(而不是您)负责用户使用的输入法。

Rather than do that, I may as well just add buttons to perform the keypresses I hoped to invoke via a custom keyboard.

这是你唯一的选择。

关于java - 希望自定义键盘仅用于我的应用程序并在应用程序失去焦点时恢复以前的键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30145191/

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