Uri in android code example
Example 1: android uri to string
Uri uri;
String stringUri;
stringUri = uri.toString();
Example 2: android studio create a Uri
Uri myUri = Uri.parse("http://www.google.com");
Uri uri;
String stringUri;
stringUri = uri.toString();
Uri myUri = Uri.parse("http://www.google.com");