February 8, 201610 yr Hey, I'm trying to figuring out how to write integers with the getKeyboard class but it doesn't seem to work. What I've tried so far is: getKeyboard().typeString(String.valueOf(Integer, true); and this from bobrocket: http://osbot.org/forum/topic/73829-smartkeyboard-better-human-typing/ None of those are working, it just doesn't type anything. Do you guys have any suggestions? Thanks in advance!
February 8, 201610 yr Play around with these: int i = 0; String a = Integer.toString(i); String b = "" + i; String c = String.valueOf(i); String d = new Integer(i).toString();
Create an account or sign in to comment