Android Utililty Methods URL Relative Resolve

List of utility methods to do URL Relative Resolve

Description

The list of methods to do URL Relative Resolve are organized into topic(s).

Method

UriresolveRelativeUri(Uri sourceUri, String relativeUri)
resolve Relative Uri
URL source = new URL(sourceUri.toString());
URL absolute = new URL(source, relativeUri);
return Uri.parse(absolute.toString());