android-browser tag

1 questions


1 answers
111 views
0
I want to open the URL with my Android web browser on my app

try { Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link)); startActivity(myIntent); } } catch (ActivityNotFoundException e) { Toast.makeText(this, No application can handle t...


© 2024 OneMinuteCode. All rights reserved.