Ace Posted February 8, 2016 Posted February 8, 2016 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!
Botre Posted February 8, 2016 Posted February 8, 2016 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(); 2
iJodix Posted February 8, 2016 Posted February 8, 2016 int i = 0; getKeyboard().typeString("" + i); 1
Fruity Posted February 8, 2016 Posted February 8, 2016 Thanks guys how could I miss this lol We will never know 1