am 6b9677d8: Merge "Small fix to KeyboardView" into jb-mr1-dev
* commit '6b9677d84ba199780b0e8282bf89b04cb618f868': Small fix to KeyboardViewmain
commit
213ff17429
|
@ -255,10 +255,12 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateKeyHeight(int keyHeight) {
|
public void updateKeyHeight(int keyHeight) {
|
||||||
if (mKeyLetterRatio >= 0.0f)
|
if (mKeyLetterRatio >= 0.0f) {
|
||||||
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
||||||
if (mKeyLabelRatio >= 0.0f)
|
}
|
||||||
|
if (mKeyLabelRatio >= 0.0f) {
|
||||||
mKeyLabelSize = (int)(keyHeight * mKeyLabelRatio);
|
mKeyLabelSize = (int)(keyHeight * mKeyLabelRatio);
|
||||||
|
}
|
||||||
mKeyLargeLabelSize = (int)(keyHeight * mKeyLargeLabelRatio);
|
mKeyLargeLabelSize = (int)(keyHeight * mKeyLargeLabelRatio);
|
||||||
mKeyLargeLetterSize = (int)(keyHeight * mKeyLargeLetterRatio);
|
mKeyLargeLetterSize = (int)(keyHeight * mKeyLargeLetterRatio);
|
||||||
mKeyHintLetterSize = (int)(keyHeight * mKeyHintLetterRatio);
|
mKeyHintLetterSize = (int)(keyHeight * mKeyHintLetterRatio);
|
||||||
|
@ -340,13 +342,16 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateKeyHeight(int keyHeight) {
|
public void updateKeyHeight(int keyHeight) {
|
||||||
|
if (mPreviewTextRatio >= 0.0f) {
|
||||||
mPreviewTextSize = (int)(keyHeight * mPreviewTextRatio);
|
mPreviewTextSize = (int)(keyHeight * mPreviewTextRatio);
|
||||||
|
}
|
||||||
|
if (mKeyLetterRatio >= 0.0f) {
|
||||||
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static void setAlpha(Drawable drawable, int alpha) {
|
private static void setAlpha(Drawable drawable, int alpha) {
|
||||||
if (drawable == null)
|
if (drawable == null) return;
|
||||||
return;
|
|
||||||
drawable.setAlpha(alpha);
|
drawable.setAlpha(alpha);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue