Questions tagged «android-browser»

30
මගේ යෙදුමෙන් ඇන්ඩ්‍රොයිඩ් වෙබ් බ්‍රව්සරයේ 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(); } නමුත් මට …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.