How can I open a URL in Android’s web browser from my application? How to open an URL from code in the built-in web browser rather than within my application? I tried this: try { Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link)); startActivity(myIntent);... April 12, 2022 0 Comments