2015-07-30 20:14:55 +02:00
|
|
|
package juloo.keyboard2;
|
|
|
|
|
|
|
|
import android.inputmethodservice.InputMethodService;
|
|
|
|
import android.util.Log;
|
2015-07-31 20:48:19 +02:00
|
|
|
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";
|
|
|
|
|
2015-07-31 20:48:19 +02:00
|
|
|
private KeyboardData _keyboardData;
|
2015-07-30 20:14:55 +02:00
|
|
|
private Keyboard2View _inputView;
|
|
|
|
|
2015-07-31 20:48:19 +02:00
|
|
|
@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);
|
2015-07-31 20:48:19 +02:00
|
|
|
_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-01 21:36:40 +02:00
|
|
|
int eventCode = key.getEventCode();
|
|
|
|
|
2015-08-02 19:56:23 +02:00
|
|
|
if (getCurrentInputConnection() == null)
|
|
|
|
return ; // TODO wait a little before give up
|
2015-08-01 21:36:40 +02:00
|
|
|
switch (eventCode)
|
|
|
|
{
|
|
|
|
case KeyValue.EVENT_NONE:
|
2015-08-01 23:54:38 +02:00
|
|
|
sendKeyChar(key.getChar((flags & KeyValue.FLAG_SHIFT) != 0));
|
2015-08-01 21:36:40 +02:00
|
|
|
break ;
|
|
|
|
case KeyValue.EVENT_DELETE:
|
|
|
|
getCurrentInputConnection().deleteSurroundingText(0, 1);
|
|
|
|
break ;
|
|
|
|
case KeyValue.EVENT_BACKSPACE:
|
|
|
|
getCurrentInputConnection().deleteSurroundingText(1, 0);
|
|
|
|
break ;
|
|
|
|
default:
|
|
|
|
getCurrentInputConnection().sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, eventCode));
|
|
|
|
getCurrentInputConnection().sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, eventCode));
|
|
|
|
break ;
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
}
|