Android Custom KeyBoardView清除默认密钥

时间:2013-07-01 19:08:09

标签: android android-layout android-view android-custom-view android-keypad

我有自定义的MyKBV类,它扩展了KeyBoardView.I创建了这个自定义视图,以便为键使用自定义字体。我能够看到键上更改的字体,但问题是每个键与XML的默认键重叠,我认为是TypefaceE.DEFAULT_BOLD.SO我看到的是每个键上的两个字符串一个粗体,一个带有我想要的字体。如何清除默认键,以便只显示自定义键。我花了很多时间在这上面。如果有人可以指出我哪里出错或者我能做什么会有所帮助do.Thanks !!

public class MyKBV extends KeyboardView {
Context context;

@Override
public void onDraw(Canvas canvas) {
    // TODO Auto-generated method stub
    super.onDraw(canvas);
    Paint paint = new Paint();
    Typeface font = Typeface.createFromAsset(context.getAssets(),
            "fonts/Hippie.otf");
    paint.setTypeface(font);
    paint.setTextSize(40);

    List<Key> listKeys = getKeyboard().getKeys();

    for (Key key : listKeys) {
        if (key.label != null) {
            if (key.label.toString().length() > 1) {
                paint.setTextSize(30);
                canvas.drawText(key.label.toString(), key.x
                        + (key.width / 2) - 15, key.y + (key.height / 2)
                        + 10, paint);
            } else {
                canvas.drawText(key.label.toString(), key.x
                        + (key.width / 2) - 10, key.y + (key.height / 2)
                        + 10, paint);
            }
        }
    }

}

public MyKeyBoardView(Context context, AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
    this.context = context;

}

}

1 个答案:

答案 0 :(得分:0)

如果覆盖onDraw(),则应首先绘制背景,然后绘制文本。

public class MyKeyboardView extends android.inputmethodservice.KeyboardView {

    Context context;
    public MyKeyboardView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
        this.context = context ;
    }



    @Override
    public void onDraw(Canvas canvas) {
        super.onDraw(canvas);

         Paint paint = new Paint();
    Typeface font = Typeface.createFromAsset(context.getAssets(),
            "fonts/Hippie.otf");
    paint.setTypeface(font);
    paint.setTextSize(40);




        List<Key> keys = getKeyboard().getKeys();
        for(Key key: keys) {

     if(key.pressed){
                NinePatchDrawable npd = (NinePatchDrawable)context.getResources().getDrawable(R.drawable.glow);
                npd.setBounds(key.x,key.y,key.x+key.width,key.y+key.height);
                npd.draw(canvas);
            if(key.label != null)
                canvas.drawText(key.label.toString(), key.x + (key.width/2), key.y + 25, paint);
     }else if(key.modifier){  // boolean that defines key is function key

            NinePatchDrawable npd = (NinePatchDrawable)context.getResources().getDrawable(R.drawable.btn_keyboard_special);
            npd.setBounds(key.x,key.y,key.x+key.width,key.y+key.height);
            npd.draw(canvas);
            if(key.label != null)
                canvas.drawText(key.label.toString(), key.x + (key.width/2), key.y + 25, paint);
      }


        break;
        }
    }