Unexpected-Keyboard/srcs/juloo.keyboard2/Keyboard2.java

77 lines
2.3 KiB
Java
Raw Normal View History

2015-07-30 20:14:55 +02:00
package juloo.keyboard2;
import android.inputmethodservice.InputMethodService;
import android.util.Log;
import android.view.KeyEvent;
2015-07-30 20:14:55 +02:00
import android.view.View;
public class Keyboard2 extends InputMethodService
{
public static final String TAG = "Keyboard_2.0";
private KeyboardData _keyboardData;
2015-07-30 20:14:55 +02:00
private Keyboard2View _inputView;
@Override
public void onCreate()
{
super.onCreate();
_keyboardData = new KeyboardData(getResources().getXml(R.xml.azerty));
}
2015-07-30 20:14:55 +02:00
@Override
public View onCreateInputView()
{
_inputView = (Keyboard2View)getLayoutInflater().inflate(R.layout.input, null);
_inputView.setKeyboard(this, _keyboardData);
2015-07-30 20:14:55 +02:00
return (_inputView);
}
2015-08-01 23:54:38 +02:00
public void handleKeyUp(KeyValue key, int flags)
2015-08-01 16:33:30 +02:00
{
2015-08-02 19:56:23 +02:00
if (getCurrentInputConnection() == null)
return ;
if ((flags & (KeyValue.FLAG_CTRL | KeyValue.FLAG_ALT)) != 0)
{
int metaState = 0;
KeyEvent event;
if (key.getEventCode() == KeyValue.EVENT_NONE)
return ;
if ((flags & KeyValue.FLAG_CTRL) != 0)
metaState |= KeyEvent.META_CTRL_LEFT_ON | KeyEvent.META_CTRL_ON;
if ((flags & KeyValue.FLAG_ALT) != 0)
metaState |= KeyEvent.META_ALT_LEFT_ON | KeyEvent.META_ALT_ON;
if ((flags & KeyValue.FLAG_SHIFT) != 0)
metaState |= KeyEvent.META_SHIFT_LEFT_ON | KeyEvent.META_SHIFT_ON;
event = new KeyEvent(1, 1, KeyEvent.ACTION_DOWN, key.getEventCode(), 1, metaState);
getCurrentInputConnection().sendKeyEvent(event);
getCurrentInputConnection().sendKeyEvent(KeyEvent.changeAction(event, KeyEvent.ACTION_UP));
}
else if (key.getEventCode() == KeyEvent.KEYCODE_DEL)
2015-08-01 21:36:40 +02:00
{
getCurrentInputConnection().deleteSurroundingText(1, 0);
}
else if (key.getEventCode() == KeyEvent.KEYCODE_FORWARD_DEL)
{
getCurrentInputConnection().deleteSurroundingText(0, 1);
}
else if (key.getChar(false) == KeyValue.CHAR_NONE && key.getEventCode() != KeyValue.EVENT_NONE)
{
KeyEvent event = new KeyEvent(KeyEvent.ACTION_DOWN, key.getEventCode());
getCurrentInputConnection().sendKeyEvent(event);
getCurrentInputConnection().sendKeyEvent(KeyEvent.changeAction(event, KeyEvent.ACTION_UP));
}
2015-08-03 15:11:11 +02:00
else if (key.getChar(false) != KeyValue.CHAR_NONE)
{
sendKeyChar(key.getChar((flags & KeyValue.FLAG_SHIFT) != 0));
2015-08-01 21:36:40 +02:00
}
2015-08-01 16:33:30 +02:00
}
2015-07-30 20:14:55 +02:00
public static void log(String str)
{
Log.d(TAG, str);
}
}