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;
|
2021-05-09 00:56:59 +02:00
|
|
|
import android.os.Build.VERSION;
|
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;
|
2021-12-28 17:47:18 +01:00
|
|
|
import android.view.inputmethod.InputConnection;
|
2021-05-09 00:09:10 +02:00
|
|
|
import android.view.inputmethod.InputMethodInfo;
|
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;
|
2021-12-30 00:26:05 +01:00
|
|
|
import android.view.ContextThemeWrapper;
|
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;
|
2021-05-09 00:09:10 +02:00
|
|
|
import java.util.List;
|
2021-04-15 23:56:34 +02:00
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.Map;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
|
|
|
public class Keyboard2 extends InputMethodService
|
2021-12-19 19:44:27 +01:00
|
|
|
implements SharedPreferences.OnSharedPreferenceChangeListener
|
2015-07-30 20:14:55 +02:00
|
|
|
{
|
2021-12-19 19:44:27 +01:00
|
|
|
private Keyboard2View _keyboardView;
|
2021-04-15 23:56:34 +02:00
|
|
|
private int _currentTextLayout;
|
2021-12-19 19:44:27 +01:00
|
|
|
private ViewGroup _emojiPane = null;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
private Config _config;
|
2015-10-29 12:49:40 +01:00
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
private Map<Integer, KeyboardData> _layoutCache = new HashMap<Integer, KeyboardData>();
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onCreate()
|
|
|
|
{
|
|
|
|
super.onCreate();
|
|
|
|
PreferenceManager.setDefaultValues(this, R.xml.settings, false);
|
|
|
|
PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this);
|
2021-12-28 17:47:18 +01:00
|
|
|
Config.initGlobalConfig(this, new KeyEventHandler(this.new Receiver()));
|
2021-12-28 16:47:19 +01:00
|
|
|
_config = Config.globalConfig();
|
2021-12-30 00:26:05 +01:00
|
|
|
_keyboardView = (Keyboard2View)inflate_view(R.layout.keyboard);
|
2021-12-19 19:44:27 +01:00
|
|
|
_keyboardView.reset();
|
|
|
|
}
|
2015-10-29 12:49:40 +01:00
|
|
|
|
2021-05-09 00:09:10 +02:00
|
|
|
private List<InputMethodSubtype> getEnabledSubtypes(InputMethodManager imm)
|
|
|
|
{
|
|
|
|
String pkg = getPackageName();
|
|
|
|
for (InputMethodInfo imi : imm.getEnabledInputMethodList())
|
|
|
|
if (imi.getPackageName().equals(pkg))
|
|
|
|
return imm.getEnabledInputMethodSubtypeList(imi, true);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshSubtypeLayout(InputMethodSubtype subtype)
|
2021-04-15 23:56:34 +02:00
|
|
|
{
|
2021-05-09 01:07:43 +02:00
|
|
|
int l = _config.layout;;
|
|
|
|
if (l == -1)
|
|
|
|
{
|
|
|
|
String s = subtype.getExtraValueOf("default_layout");
|
|
|
|
if (s != null)
|
|
|
|
l = Config.layoutId_of_string(s);
|
|
|
|
}
|
|
|
|
_currentTextLayout = l;
|
2021-05-09 00:09:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private int accents_of_subtype(InputMethodSubtype subtype)
|
|
|
|
{
|
|
|
|
String accents_option = subtype.getExtraValueOf("accents");
|
|
|
|
int flags = 0;
|
|
|
|
if (accents_option != null)
|
|
|
|
for (String acc : accents_option.split("\\|"))
|
|
|
|
flags |= Config.accentFlag_of_name(acc);
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshAccentsOption(InputMethodManager imm, InputMethodSubtype subtype)
|
|
|
|
{
|
|
|
|
final int DONT_REMOVE = KeyValue.FLAG_ACCENT_SUPERSCRIPT | KeyValue.FLAG_ACCENT_SUBSCRIPT;
|
|
|
|
int to_keep = DONT_REMOVE;
|
|
|
|
switch (_config.accents)
|
2021-04-28 00:23:52 +02:00
|
|
|
{
|
2021-05-09 00:09:10 +02:00
|
|
|
case 1:
|
|
|
|
to_keep |= accents_of_subtype(subtype);
|
|
|
|
for (InputMethodSubtype s : getEnabledSubtypes(imm))
|
|
|
|
to_keep |= accents_of_subtype(s);
|
|
|
|
break;
|
|
|
|
case 2: to_keep |= accents_of_subtype(subtype); break;
|
|
|
|
case 3: to_keep = KeyValue.FLAGS_ACCENTS; break;
|
|
|
|
case 4: break;
|
|
|
|
default: throw new IllegalArgumentException();
|
2021-04-28 00:23:52 +02:00
|
|
|
}
|
2021-05-09 00:09:10 +02:00
|
|
|
_config.accent_flags_to_remove = ~to_keep & KeyValue.FLAGS_ACCENTS;
|
2021-04-28 00:23:52 +02:00
|
|
|
}
|
|
|
|
|
2021-05-09 00:56:59 +02:00
|
|
|
private void refreshSubtypeLegacyFallback()
|
|
|
|
{
|
|
|
|
// Fallback for the accents option: Only respect the "None" case
|
|
|
|
switch (_config.accents)
|
|
|
|
{
|
|
|
|
case 1: case 2: case 3: _config.accent_flags_to_remove = 0; break;
|
|
|
|
case 4: _config.accent_flags_to_remove = KeyValue.FLAGS_ACCENTS; break;
|
|
|
|
}
|
|
|
|
// Fallback for the layout option: Use qwerty in the "system settings" case
|
|
|
|
_currentTextLayout = (_config.layout == -1) ? R.xml.qwerty : _config.layout;
|
|
|
|
}
|
|
|
|
|
2021-04-28 00:23:52 +02:00
|
|
|
private void refreshSubtypeImm()
|
|
|
|
{
|
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
_config.shouldOfferSwitchingToNextInputMethod = imm.shouldOfferSwitchingToNextInputMethod(getConnectionToken());
|
2021-05-09 00:56:59 +02:00
|
|
|
if (VERSION.SDK_INT < 12)
|
|
|
|
{
|
|
|
|
// Subtypes won't work well under API level 12 (getExtraValueOf)
|
|
|
|
refreshSubtypeLegacyFallback();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype();
|
|
|
|
refreshSubtypeLayout(subtype);
|
|
|
|
refreshAccentsOption(imm, subtype);
|
|
|
|
}
|
2021-04-15 23:56:34 +02:00
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onStartInputView(EditorInfo info, boolean restarting)
|
|
|
|
{
|
2021-04-28 00:23:52 +02:00
|
|
|
refreshSubtypeImm();
|
2021-12-19 19:44:27 +01:00
|
|
|
if ((info.inputType & InputType.TYPE_CLASS_NUMBER) != 0)
|
2021-04-15 23:56:34 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
|
2021-05-09 00:09:10 +02:00
|
|
|
else
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2021-05-07 22:10:26 +02:00
|
|
|
_keyboardView.reset(); // Layout might need to change due to rotation
|
2021-12-30 00:26:05 +01:00
|
|
|
setInputView(_keyboardView);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-10-11 15:30:39 +02:00
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
@Override
|
|
|
|
public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype)
|
|
|
|
{
|
2021-05-09 00:09:10 +02:00
|
|
|
refreshSubtypeImm();
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2021-04-15 23:56:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-01 22:47:22 +02:00
|
|
|
@Override
|
|
|
|
public void onFinishInputView(boolean finishingInput)
|
|
|
|
{
|
|
|
|
super.onFinishInputView(finishingInput);
|
|
|
|
_keyboardView.reset();
|
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key)
|
|
|
|
{
|
2021-12-30 00:26:05 +01:00
|
|
|
int prev_theme = _config.theme;
|
2021-12-28 16:47:19 +01:00
|
|
|
_config.refresh(this);
|
2021-04-28 00:23:52 +02:00
|
|
|
refreshSubtypeImm();
|
2021-12-28 16:47:19 +01:00
|
|
|
_keyboardView.refreshConfig(getLayout(_currentTextLayout));
|
2021-12-30 00:26:05 +01:00
|
|
|
// Refreshing the theme config requires re-creating the views
|
|
|
|
if (prev_theme != _config.theme)
|
|
|
|
{
|
|
|
|
_keyboardView = (Keyboard2View)inflate_view(R.layout.keyboard);
|
|
|
|
_emojiPane = null;
|
|
|
|
}
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-10-01 17:11:52 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
/** Not static */
|
|
|
|
public class Receiver implements KeyEventHandler.IReceiver
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
public void switchToNextInputMethod()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
|
|
|
|
imm.switchToNextInputMethod(getConnectionToken(), false);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
|
|
|
public void setPane_emoji()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
|
|
|
if (_emojiPane == null)
|
2021-12-30 00:26:05 +01:00
|
|
|
_emojiPane = (ViewGroup)inflate_view(R.layout.emoji_pane);
|
2021-12-19 19:44:27 +01:00
|
|
|
setInputView(_emojiPane);
|
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
|
|
|
public void setPane_normal()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
setInputView(_keyboardView);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
|
|
|
public void setLayout(int res_id)
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
if (res_id == -1)
|
|
|
|
res_id = _currentTextLayout;
|
|
|
|
_keyboardView.setKeyboard(getLayout(res_id));
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void sendKeyEvent(int eventCode, int meta)
|
|
|
|
{
|
|
|
|
InputConnection conn = getCurrentInputConnection();
|
|
|
|
if (conn == null)
|
|
|
|
return;
|
|
|
|
KeyEvent event = new KeyEvent(1, 1, KeyEvent.ACTION_DOWN, eventCode, 0, meta);
|
|
|
|
conn.sendKeyEvent(event);
|
|
|
|
conn.sendKeyEvent(KeyEvent.changeAction(event, KeyEvent.ACTION_UP));
|
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void showKeyboardConfig()
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(Keyboard2.this, SettingsActivity.class);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void commitText(String text)
|
|
|
|
{
|
|
|
|
getCurrentInputConnection().commitText(text, 1);
|
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void commitChar(char c)
|
|
|
|
{
|
|
|
|
sendKeyChar(c);
|
|
|
|
}
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-04-18 23:31:59 +02:00
|
|
|
|
|
|
|
private IBinder getConnectionToken()
|
|
|
|
{
|
|
|
|
return getWindow().getWindow().getAttributes().token;
|
|
|
|
}
|
2021-12-30 00:26:05 +01:00
|
|
|
|
|
|
|
private View inflate_view(int layout)
|
|
|
|
{
|
|
|
|
return View.inflate(new ContextThemeWrapper(this, _config.theme), layout, null);
|
|
|
|
}
|
2015-07-30 20:14:55 +02:00
|
|
|
}
|