int to String in Android
Very fast to do it if you dnt remember or dnt have time to type long text :
int a= 100;
String s = ""+a;
String testString = Integer.toString(test);
Or you can use Use
String.valueOf()
eg.
int test=5;
String testString = String.valueOf(test);