How to convert any Object to String?
To convert any object to string there are several methods in Java String convertedToString = String.valueOf(Object); //method 1 String convertedToString = “” + Object; //method 2 String convertedToString = Object.toString(); //method 3 I would prefer the first and third EDIT If working in kotlin, the official android language val number: Int = 12345 String convertAndAppendToString … Read more