Domande taggate «android-browser»

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 …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.