2015-07-30 20:14:55 +02:00
|
|
|
package juloo.keyboard2;
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
import android.content.Context;
|
2015-10-01 17:11:52 +02:00
|
|
|
import android.content.res.Configuration;
|
2015-08-08 17:57:25 +02:00
|
|
|
import android.content.Intent;
|
2015-08-08 16:47:22 +02:00
|
|
|
import android.content.SharedPreferences;
|
2015-10-24 16:32:49 +02:00
|
|
|
import android.graphics.Typeface;
|
2015-07-30 20:14:55 +02:00
|
|
|
import android.inputmethodservice.InputMethodService;
|
2015-10-01 17:11:52 +02:00
|
|
|
import android.os.Bundle;
|
2021-04-18 23:31:59 +02:00
|
|
|
import android.os.IBinder;
|
2015-10-11 15:30:39 +02:00
|
|
|
import android.text.InputType;
|
2015-08-08 16:47:22 +02:00
|
|
|
import android.preference.PreferenceManager;
|
2015-10-11 15:30:39 +02:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
2016-12-11 22:45:58 +01:00
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2021-04-15 23:56:34 +02:00
|
|
|
import android.view.inputmethod.InputMethodSubtype;
|
2015-07-31 20:48:19 +02:00
|
|
|
import android.view.KeyEvent;
|
2015-07-30 20:14:55 +02:00
|
|
|
import android.view.View;
|
2015-08-08 22:24:19 +02:00
|
|
|
import android.view.ViewGroup;
|
2016-12-11 22:45:58 +01:00
|
|
|
import android.util.Log;
|
2021-04-15 23:56:34 +02:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.Map;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
|
|
|
public class Keyboard2 extends InputMethodService
|
2015-08-08 16:47:22 +02:00
|
|
|
implements SharedPreferences.OnSharedPreferenceChangeListener
|
2015-07-30 20:14:55 +02:00
|
|
|
{
|
2015-10-23 14:22:43 +02:00
|
|
|
private Keyboard2View _keyboardView;
|
2021-04-15 23:56:34 +02:00
|
|
|
private int _currentTextLayout;
|
2015-10-24 16:32:49 +02:00
|
|
|
private ViewGroup _emojiPane = null;
|
|
|
|
private Typeface _specialKeyFont = null;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
2015-10-29 12:49:40 +01:00
|
|
|
private Config _config;
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
private Map<Integer, KeyboardData> _layoutCache = new HashMap<Integer, KeyboardData>();
|
|
|
|
|
|
|
|
private static final int DEFAULT_LAYOUT = R.xml.qwerty;
|
|
|
|
private static final Map<String, Integer> LAYOUTS = new HashMap<String, Integer>();
|
|
|
|
|
|
|
|
private static void add_layout(String lang, int resId)
|
|
|
|
{
|
|
|
|
LAYOUTS.put(new Locale(lang).getLanguage(), resId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
{
|
|
|
|
add_layout("fr", R.xml.azerty);
|
|
|
|
}
|
|
|
|
|
|
|
|
private KeyboardData getLayout(int resId)
|
|
|
|
{
|
|
|
|
KeyboardData l = _layoutCache.get(resId);
|
|
|
|
if (l == null)
|
|
|
|
{
|
|
|
|
l = KeyboardData.parse(getResources().getXml(resId));
|
|
|
|
_layoutCache.put(resId, l);
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
2015-07-31 20:48:19 +02:00
|
|
|
@Override
|
|
|
|
public void onCreate()
|
|
|
|
{
|
|
|
|
super.onCreate();
|
2015-10-24 16:32:49 +02:00
|
|
|
_specialKeyFont = Typeface.createFromAsset(getAssets(), "fonts/keys.ttf");
|
2015-08-08 16:47:22 +02:00
|
|
|
PreferenceManager.setDefaultValues(this, R.xml.settings, false);
|
2015-08-08 17:57:25 +02:00
|
|
|
PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this);
|
2015-10-29 12:49:40 +01:00
|
|
|
_config = new Config(this);
|
2015-10-23 14:22:43 +02:00
|
|
|
_keyboardView = (Keyboard2View)getLayoutInflater().inflate(R.layout.keyboard, null);
|
2015-10-29 12:49:40 +01:00
|
|
|
_keyboardView.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Config getConfig()
|
|
|
|
{
|
|
|
|
return (_config);
|
2015-10-23 14:22:43 +02:00
|
|
|
}
|
|
|
|
|
2015-10-24 16:32:49 +02:00
|
|
|
public Typeface getSpecialKeyFont()
|
2015-10-23 14:22:43 +02:00
|
|
|
{
|
2015-10-24 16:32:49 +02:00
|
|
|
return (_specialKeyFont);
|
2015-07-31 20:48:19 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
private void refreshSubtype(InputMethodSubtype subtype)
|
|
|
|
{
|
|
|
|
Integer l = LAYOUTS.get(subtype.getLanguageTag());
|
|
|
|
if (l == null)
|
|
|
|
l = DEFAULT_LAYOUT;
|
|
|
|
_currentTextLayout = l;
|
|
|
|
}
|
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
@Override
|
|
|
|
public View onCreateInputView()
|
|
|
|
{
|
2015-10-23 14:22:43 +02:00
|
|
|
ViewGroup parent = (ViewGroup)_keyboardView.getParent();
|
2015-08-08 22:24:19 +02:00
|
|
|
|
|
|
|
if (parent != null)
|
2015-10-23 14:22:43 +02:00
|
|
|
parent.removeView(_keyboardView);
|
|
|
|
return (_keyboardView);
|
2015-07-30 20:14:55 +02:00
|
|
|
}
|
|
|
|
|
2015-10-11 15:30:39 +02:00
|
|
|
@Override
|
|
|
|
public void onStartInputView(EditorInfo info, boolean restarting)
|
|
|
|
{
|
2021-04-15 23:56:34 +02:00
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
|
2021-04-18 23:31:59 +02:00
|
|
|
_config.shouldOfferSwitchingToNextInputMethod = imm.shouldOfferSwitchingToNextInputMethod(getConnectionToken());
|
2021-04-15 23:56:34 +02:00
|
|
|
refreshSubtype(imm.getCurrentInputMethodSubtype());
|
2015-10-11 15:30:39 +02:00
|
|
|
if ((info.inputType & InputType.TYPE_CLASS_NUMBER) != 0)
|
2021-04-15 23:56:34 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
|
|
|
|
else
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2015-10-11 15:30:39 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
@Override
|
|
|
|
public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype)
|
|
|
|
{
|
|
|
|
refreshSubtype(subtype);
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
|
|
|
}
|
|
|
|
|
2015-08-08 22:24:19 +02:00
|
|
|
@Override
|
2015-08-08 17:57:25 +02:00
|
|
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key)
|
2015-08-03 20:01:05 +02:00
|
|
|
{
|
2015-10-29 12:49:40 +01:00
|
|
|
_config.refresh();
|
2021-04-24 23:18:16 +02:00
|
|
|
_keyboardView.refreshConfig(_config);
|
2015-08-03 20:01:05 +02:00
|
|
|
}
|
|
|
|
|
2015-10-01 17:11:52 +02:00
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfig)
|
|
|
|
{
|
2015-10-23 14:22:43 +02:00
|
|
|
_keyboardView.reset();
|
2015-10-01 17:11:52 +02:00
|
|
|
}
|
|
|
|
|
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)
|
2015-08-02 21:32:11 +02:00
|
|
|
return ;
|
2021-04-18 23:28:49 +02:00
|
|
|
key = KeyModifier.handleFlags(key, flags);
|
|
|
|
if (key.eventCode == KeyValue.EVENT_CONFIG)
|
2015-08-03 20:01:05 +02:00
|
|
|
{
|
2015-08-08 17:57:25 +02:00
|
|
|
Intent intent = new Intent(this, SettingsActivity.class);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
startActivity(intent);
|
2015-08-03 20:01:05 +02:00
|
|
|
}
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.eventCode == KeyValue.EVENT_SWITCH_TEXT)
|
2021-04-15 23:56:34 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.eventCode == KeyValue.EVENT_SWITCH_NUMERIC)
|
2021-04-15 23:56:34 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.eventCode == KeyValue.EVENT_SWITCH_EMOJI)
|
2015-10-26 14:19:46 +01:00
|
|
|
{
|
|
|
|
if (_emojiPane == null)
|
|
|
|
_emojiPane = (ViewGroup)getLayoutInflater().inflate(R.layout.emoji_pane, null);
|
|
|
|
setInputView(_emojiPane);
|
|
|
|
}
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.eventCode == KeyValue.EVENT_SWITCH_BACK_EMOJI)
|
2015-10-24 16:32:49 +02:00
|
|
|
setInputView(_keyboardView);
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.eventCode == KeyValue.EVENT_CHANGE_METHOD)
|
2016-12-11 22:45:58 +01:00
|
|
|
{
|
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
|
2021-04-18 23:31:59 +02:00
|
|
|
imm.switchToNextInputMethod(getConnectionToken(), false);
|
2016-12-11 22:45:58 +01:00
|
|
|
}
|
2015-08-03 20:01:05 +02:00
|
|
|
else if ((flags & (KeyValue.FLAG_CTRL | KeyValue.FLAG_ALT)) != 0)
|
2015-08-03 15:58:13 +02:00
|
|
|
handleMetaKeyUp(key, flags);
|
2015-10-23 14:22:43 +02:00
|
|
|
// else if (eventCode == KeyEvent.KEYCODE_DEL)
|
2015-10-17 00:54:28 +02:00
|
|
|
// handleDelKey(1, 0);
|
2015-10-23 14:22:43 +02:00
|
|
|
// else if (eventCode == KeyEvent.KEYCODE_FORWARD_DEL)
|
2015-10-17 00:54:28 +02:00
|
|
|
// handleDelKey(0, 1);
|
2021-04-18 23:28:49 +02:00
|
|
|
else if (key.char_ == KeyValue.CHAR_NONE)
|
2015-10-24 16:32:49 +02:00
|
|
|
{
|
2021-04-18 23:28:49 +02:00
|
|
|
if (key.eventCode != KeyValue.EVENT_NONE)
|
2015-10-24 16:32:49 +02:00
|
|
|
handleMetaKeyUp(key, flags);
|
|
|
|
else
|
2021-04-18 23:28:49 +02:00
|
|
|
getCurrentInputConnection().commitText(key.symbol, 1);
|
2015-10-24 16:32:49 +02:00
|
|
|
}
|
2015-10-26 14:19:46 +01:00
|
|
|
else
|
2021-04-18 23:28:49 +02:00
|
|
|
sendKeyChar(key.char_);
|
2015-08-03 15:58:13 +02:00
|
|
|
}
|
|
|
|
|
2015-10-17 00:54:28 +02:00
|
|
|
// private void handleDelKey(int before, int after)
|
|
|
|
// {
|
|
|
|
// CharSequence selection = getCurrentInputConnection().getSelectedText(0);
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2015-10-17 00:54:28 +02:00
|
|
|
// if (selection != null && selection.length() > 0)
|
|
|
|
// getCurrentInputConnection().commitText("", 1);
|
|
|
|
// else
|
|
|
|
// getCurrentInputConnection().deleteSurroundingText(before, after);
|
|
|
|
// }
|
2015-08-03 15:58:13 +02:00
|
|
|
|
|
|
|
private void handleMetaKeyUp(KeyValue key, int flags)
|
|
|
|
{
|
|
|
|
int metaState = 0;
|
|
|
|
KeyEvent event;
|
|
|
|
|
2021-04-18 23:28:49 +02:00
|
|
|
if (key.eventCode == KeyValue.EVENT_NONE)
|
2015-08-03 15:58:13 +02:00
|
|
|
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;
|
2021-04-18 23:28:49 +02:00
|
|
|
event = new KeyEvent(1, 1, KeyEvent.ACTION_DOWN, key.eventCode, 1, metaState);
|
2015-08-03 15:58:13 +02:00
|
|
|
getCurrentInputConnection().sendKeyEvent(event);
|
|
|
|
getCurrentInputConnection().sendKeyEvent(KeyEvent.changeAction(event, KeyEvent.ACTION_UP));
|
2015-08-01 16:33:30 +02:00
|
|
|
}
|
2021-04-18 23:31:59 +02:00
|
|
|
|
|
|
|
private IBinder getConnectionToken()
|
|
|
|
{
|
|
|
|
return getWindow().getWindow().getAttributes().token;
|
|
|
|
}
|
2015-07-30 20:14:55 +02:00
|
|
|
}
|