30
Come posso aprire un URL nel browser Web Android dalla mia applicazione?
Come aprire un URL dal codice nel browser Web incorporato anziché all'interno della mia applicazione? Ho provato questo: try { Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link)); startActivity(myIntent); } catch (ActivityNotFoundException e) { Toast.makeText(this, "No application can handle this request." + " Please install a webbrowser", Toast.LENGTH_LONG).show(); e.printStackTrace(); } ma ho …