30
मैं अपने एप्लिकेशन से Android के वेब ब्राउज़र में URL कैसे खोल सकता हूं?
मेरे ऐप्लिकेशन के बजाय अंतर्निहित वेब ब्राउज़र में कोड से URL कैसे खोलें? मैंने यह कोशिश की: 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(); } लेकिन मुझे एक …