Ace Posted February 8, 2016 Share 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! Quote Link to comment Share on other sites More sharing options...
Botre Posted February 8, 2016 Share 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 Quote Link to comment Share on other sites More sharing options...
iJodix Posted February 8, 2016 Share Posted February 8, 2016 int i = 0; getKeyboard().typeString("" + i); 1 Quote Link to comment Share on other sites More sharing options...
Mysteryy Posted February 8, 2016 Share Posted February 8, 2016 ? Quote Link to comment Share on other sites More sharing options...
Ace Posted February 8, 2016 Author Share Posted February 8, 2016 Thanks guys how could I miss this lol Quote Link to comment Share on other sites More sharing options...
Fruity Posted February 8, 2016 Share Posted February 8, 2016 Thanks guys how could I miss this lol We will never know 1 Quote Link to comment Share on other sites More sharing options...