Elide custom keys labels

Make the font smaller for custom keys with a length above 1.
Draw up to 4 characters on keys.
This commit is contained in:
Jules Aguillon
2023-08-06 18:17:59 +02:00
parent 4d10556d49
commit eb56c80ffb
2 changed files with 3 additions and 2 deletions

View File

@ -407,7 +407,8 @@ public class Keyboard2View extends View
x += keyW / 2f;
else
x += (a == Paint.Align.LEFT) ? subPadding : keyW - subPadding;
canvas.drawText(kv.getString(), x, y, p);
String label = kv.getString();
canvas.drawText(label, 0, Math.min(4, label.length()), x, y, p);
}
private void drawIndication(Canvas canvas, String indication, float x,