Is it possible to convert an Uri to String and vice versa? Because I want to get the the Uri converted into String to pas
Uri
String
You can use .toString method to convert Uri to String in java
.toString
Uri uri = Uri.parse("Http://www.google.com"); String url = uri.toString();
This method convert Uri to String easily