我正在开发一个基于软键盘的android键盘。我想要的是更改按键标签textstyle ex.(bold,shadowColor,innerShadow,color,etc.)。
如何做到这一点?
更改密钥标签:
mQwertyKeyboard.getKeys().get(2).label="Label Name";
更改按键字体&粗体:
@Override
public void onDraw(Canvas canvas) {
super.onDraw(canvas);
Typeface tf = Typeface.createFromAsset(this.getAssets(),"avanish.ttf");
List<Keyboard.Key> keys = getKeyboard().getKeys();
for (Keyboard.Key key : keys) {
Paint paint = new Paint();
paint.setTypeface(tf);
paint.setTypeface(Typeface.DEFAULT_BOLD);
canvas.drawText(key.label.toString(), key.x + key.width,
key.y + key.height, paint);
}
}
和其他东西,如shadowColor,innerShadow等在android中使用res/values/styles进行更改。所以,了解更多关于风格的信息。
谢谢。