abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2
diff options
context:
space:
mode:
authorjaguillo2015-10-03 00:19:17 +0200
committerjaguillo2015-10-03 00:19:17 +0200
commit549c753450be61fdd267904e5b34666e8318b79f (patch)
tree68997989158bcbab557a54425a9bdb8dca757582 /srcs/juloo.keyboard2
parent700adbded6dcaf0634f1ef72c40da3e53722d890 (diff)
downloadunexpected-keyboard-549c753450be61fdd267904e5b34666e8318b79f.tar.gz
unexpected-keyboard-549c753450be61fdd267904e5b34666e8318b79f.zip
Perf improvement (small)
Diffstat (limited to 'srcs/juloo.keyboard2')
-rw-r--r--srcs/juloo.keyboard2/KeyValue.java13
-rw-r--r--srcs/juloo.keyboard2/Keyboard2.java4
-rw-r--r--srcs/juloo.keyboard2/Keyboard2View.java25
3 files changed, 27 insertions, 15 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java
index ecda632..22ac90e 100644
--- a/srcs/juloo.keyboard2/KeyValue.java
+++ b/srcs/juloo.keyboard2/KeyValue.java
@@ -31,6 +31,9 @@ class KeyValue
private int _eventCode;
private int _flags;
+ private int _cacheFlags;
+ private String _cacheSymbol;
+
public String getName()
{
return (_name);
@@ -39,7 +42,14 @@ class KeyValue
public String getSymbol(int flags)
{
if (_symbol == null)
- return (String.valueOf(getChar(flags)));
+ {
+ if (flags != _cacheFlags)
+ {
+ _cacheSymbol = String.valueOf(getChar(flags));
+ _cacheFlags = flags;
+ }
+ return (_cacheSymbol);
+ }
return (_symbol);
}
@@ -87,6 +97,7 @@ class KeyValue
_char = c;
_eventCode = eventCode;
_flags = flags;
+ _cacheFlags = -1;
KeyValue.keys.put(name, this);
}
diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java
index 4e8151d..69a1de2 100644
--- a/srcs/juloo.keyboard2/Keyboard2.java
+++ b/srcs/juloo.keyboard2/Keyboard2.java
@@ -30,7 +30,6 @@ public class Keyboard2 extends InputMethodService
{
ViewGroup parent = (ViewGroup)_inputView.getParent();
- System.out.println("create input view");
if (parent != null)
parent.removeView(_inputView);
_inputView.reset();
@@ -46,21 +45,18 @@ public class Keyboard2 extends InputMethodService
@Override
public void onAppPrivateCommand(String command, Bundle data)
{
- System.out.println("App private command: " + command);
}
@Override
public void onConfigurationChanged(Configuration newConfig)
{
_inputView.reset();
- System.out.println("configuration change");
}
public void handleKeyUp(KeyValue key, int flags)
{
if (getCurrentInputConnection() == null)
return ;
- System.out.println("key up ");
if (key.getEventCode() == KeyValue.EVENT_CONFIG)
{
Intent intent = new Intent(this, SettingsActivity.class);
diff --git a/srcs/juloo.keyboard2/Keyboard2View.java b/srcs/juloo.keyboard2/Keyboard2View.java
index b5148f7..b10c1fb 100644
--- a/srcs/juloo.keyboard2/Keyboard2View.java
+++ b/srcs/juloo.keyboard2/Keyboard2View.java
@@ -14,7 +14,7 @@ import android.util.DisplayMetrics;
import android.util.TypedValue;
import android.view.MotionEvent;
import android.view.View;
-import java.util.LinkedList;
+import java.util.ArrayList;
public class Keyboard2View extends View
implements View.OnTouchListener, Handler.Callback
@@ -26,7 +26,7 @@ public class Keyboard2View extends View
private Keyboard2 _ime;
private KeyboardData _keyboard;
- private LinkedList<KeyDown> _downKeys = new LinkedList<KeyDown>();
+ private ArrayList<KeyDown> _downKeys = new ArrayList<KeyDown>();
private int _flags = 0;
@@ -56,6 +56,9 @@ public class Keyboard2View extends View
private Paint _keyLabelPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
private Paint _keyLabelLockedPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
private Paint _keySubLabelPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
+ private Paint _keySubLabelRightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
+
+ private static RectF _tmpRect = new RectF();
public Keyboard2View(Context context, AttributeSet attrs)
{
@@ -77,8 +80,12 @@ public class Keyboard2View extends View
_keyLabelLockedPaint.setColor(getResources().getColor(R.color.key_label_locked));
_keyLabelLockedPaint.setTextSize(getResources().getDimension(R.dimen.label_text_size));
_keyLabelLockedPaint.setTextAlign(Paint.Align.CENTER);
+ _keySubLabelPaint.setTextAlign(Paint.Align.LEFT);
_keySubLabelPaint.setColor(getResources().getColor(R.color.key_sub_label));
_keySubLabelPaint.setTextSize(getResources().getDimension(R.dimen.sublabel_text_size));
+ _keySubLabelRightPaint.setTextAlign(Paint.Align.RIGHT);
+ _keySubLabelRightPaint.setColor(getResources().getColor(R.color.key_sub_label));
+ _keySubLabelRightPaint.setTextSize(getResources().getDimension(R.dimen.sublabel_text_size));
setOnTouchListener(this);
}
@@ -351,32 +358,30 @@ public class Keyboard2View extends View
{
float keyW = _keyWidth * k.width;
KeyDown keyDown = getKeyDown(k);
+ _tmpRect.set(x + _keyBgPadding, y + _keyBgPadding,
+ x + keyW - _keyBgPadding, y + _keyHeight - _keyBgPadding);
if (keyDown != null)
- canvas.drawRect(x + _keyBgPadding, y + _keyBgPadding,
- x + keyW - _keyBgPadding, y + _keyHeight - _keyBgPadding, _keyDownBgPaint);
+ canvas.drawRect(_tmpRect, _keyDownBgPaint);
else
- canvas.drawRoundRect(new RectF(x + _keyBgPadding, y + _keyBgPadding,
- x + keyW - _keyBgPadding, y + _keyHeight - _keyBgPadding), _keyRound, _keyRound, _keyBgPaint);
+ canvas.drawRoundRect(_tmpRect, _keyRound, _keyRound, _keyBgPaint);
if (k.key0 != null)
canvas.drawText(k.key0.getSymbol(_flags), keyW / 2f + x,
(_keyHeight + _keyLabelPaint.getTextSize()) / 2f + y,
(keyDown != null && (keyDown.flags & KeyValue.FLAG_LOCKED) != 0)
? _keyLabelLockedPaint : _keyLabelPaint);
float subPadding = _keyBgPadding + _keyPadding;
- _keySubLabelPaint.setTextAlign(Paint.Align.LEFT);
if (k.key1 != null)
canvas.drawText(k.key1.getSymbol(_flags), x + subPadding,
y + subPadding - _keySubLabelPaint.ascent(), _keySubLabelPaint);
if (k.key3 != null)
canvas.drawText(k.key3.getSymbol(_flags), x + subPadding,
y + _keyHeight - subPadding - _keySubLabelPaint.descent(), _keySubLabelPaint);
- _keySubLabelPaint.setTextAlign(Paint.Align.RIGHT);
if (k.key2 != null)
canvas.drawText(k.key2.getSymbol(_flags), x + keyW - subPadding,
- y + subPadding - _keySubLabelPaint.ascent(), _keySubLabelPaint);
+ y + subPadding - _keySubLabelRightPaint.ascent(), _keySubLabelRightPaint);
if (k.key4 != null)
canvas.drawText(k.key4.getSymbol(_flags), x + keyW - subPadding,
- y + _keyHeight - subPadding - _keySubLabelPaint.descent(), _keySubLabelPaint);
+ y + _keyHeight - subPadding - _keySubLabelRightPaint.descent(), _keySubLabelRightPaint);
x += keyW;
}
y += _keyHeight;