I am opening the devices browser to a specific url from an intent as follows:
String url = "http://www.google.com";
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
How can I now validate that that the page was loaded successfully in the browser? Is there a way to return the loading state or contents of the browser app?