mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am edfc8dae
: am 4cbfee7a
: am c5a8bc61
: am 5ae05786
: Merge "Fix drawing of custom action label key" into lmp-dev
* commit 'edfc8daed9ab32b225fa6e83460e6cc376623879': Fix drawing of custom action label key
This commit is contained in:
commit
179a39d175
@ -702,6 +702,10 @@ public class Key implements Comparable<Key> {
|
|||||||
return ((mLabelFlags | defaultFlags) & LABEL_FLAGS_KEEP_BACKGROUND_ASPECT_RATIO) != 0;
|
return ((mLabelFlags | defaultFlags) & LABEL_FLAGS_KEEP_BACKGROUND_ASPECT_RATIO) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final boolean hasCustomActionLabel() {
|
||||||
|
return (mLabelFlags & LABEL_FLAGS_FROM_CUSTOM_ACTION_LABEL) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
private final boolean isShiftedLetterActivated() {
|
private final boolean isShiftedLetterActivated() {
|
||||||
return (mLabelFlags & LABEL_FLAGS_SHIFTED_LETTER_ACTIVATED) != 0
|
return (mLabelFlags & LABEL_FLAGS_SHIFTED_LETTER_ACTIVATED) != 0
|
||||||
&& !TextUtils.isEmpty(mHintLabel);
|
&& !TextUtils.isEmpty(mHintLabel);
|
||||||
|
@ -343,7 +343,9 @@ public class KeyboardView extends View {
|
|||||||
final int keyWidth = key.getDrawWidth();
|
final int keyWidth = key.getDrawWidth();
|
||||||
final int keyHeight = key.getHeight();
|
final int keyHeight = key.getHeight();
|
||||||
final int bgWidth, bgHeight, bgX, bgY;
|
final int bgWidth, bgHeight, bgX, bgY;
|
||||||
if (key.needsToKeepBackgroundAspectRatio(mDefaultKeyLabelFlags)) {
|
if (key.needsToKeepBackgroundAspectRatio(mDefaultKeyLabelFlags)
|
||||||
|
// HACK: To disable expanding normal/functional key background.
|
||||||
|
&& !key.hasCustomActionLabel()) {
|
||||||
final int intrinsicWidth = background.getIntrinsicWidth();
|
final int intrinsicWidth = background.getIntrinsicWidth();
|
||||||
final int intrinsicHeight = background.getIntrinsicHeight();
|
final int intrinsicHeight = background.getIntrinsicHeight();
|
||||||
final float minScale = Math.min(
|
final float minScale = Math.min(
|
||||||
|
Loading…
Reference in New Issue
Block a user