I would like to use intent.setData(Uri uri) to pass data obtained from a URL. In order to do this, I need to be able to create a Uri from a URL (or from a byte
use intent.setData(Uri uri)
try { uri = new URI(url.toString()); } catch (URISyntaxException e) { }