30
Wie kann ich über meine Anwendung eine URL im Webbrowser von Android öffnen?
Wie öffne ich eine URL aus Code im integrierten Webbrowser und nicht in meiner Anwendung? Ich habe es versucht: 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(); } aber …