سلسبيل نور
المساهمات : 144 تاريخ التسجيل : 17/08/2016
| موضوع: android studio: إضافة عنوان أو رابط صفحة أو موقع إلى التطبيق بصفحة Java الثلاثاء فبراير 21, 2017 10:42 pm | |
| بسم الله الرحمن الرحيم a common way to achieve this is with the next code:
- الكود:
-
String url = "http://www.stackoverflow.com"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i); that could be changed to a short code version ...
- الكود:
-
Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse("http://www.stackoverflow.com")); startActivity(intent); or :
- الكود:
-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.stackoverflow.com")); startActivity(intent); the shortest! :
- الكود:
-
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.stackoverflow.com"))); happy coding! - الكود:
-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.stackoverflow.com")); startActivity(intent);
المصدر http://stackoverflow.com/questions/2201917/how-can-i-open-a-url-in-androids-web-browser-from-my-application | |
|