blackcj / AndroidCustomKeyboard

Android custom keyboard with predictive text.

Home Page:http://www.blackcj.com/blog/2016/03/30/building-a-custom-android-keyboard/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to hide top row numbers??

pk010 opened this issue · comments

commented

can anyone tell me how to remove the numbers 1-5 shown on top row?
untitled

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

    Paint paint = new Paint();
    paint.setTextAlign(Paint.Align.CENTER);
    paint.setTextSize(28);
    paint.setColor(Color.LTGRAY);
}

replace your Ondraw method() with above code in LatinKeyboardView.java