30
ฉันจะเปิด URL ในเว็บเบราว์เซอร์ของ Android จากแอปพลิเคชันของฉันได้อย่างไร
วิธีเปิด 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(); } แต่ฉันได้รับข้อยกเว้น: No activity found to handle Intent{action=android.intent.action.VIEW data =www.google.com