Android 如何调用系统默认浏览器访问
生活随笔
收集整理的這篇文章主要介紹了
Android 如何调用系统默认浏览器访问
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
// 調用系統默認瀏覽器// 參考:// http://www.cnblogs.com/zhwl/archive/2011/11/15/2249848.html// https://segmentfault.com/a/1190000003912694case R.id.tv_about_weibo: // 關于微博// 直接打開
// Intent intent= new Intent();
// intent.setAction("android.intent.action.VIEW");
// Uri weibo_url = Uri.parse(tvAboutWeibo.getText().toString());
// intent.setData(weibo_url);
// startActivity(intent);// 彈出一個選擇瀏覽器的框,選擇瀏覽器再進入Intent intent= new Intent();intent.setAction(Intent.ACTION_VIEW);Uri content_url = Uri.parse(tvAboutWeibo.getText().toString());intent.setData(content_url);startActivity(Intent.createChooser(intent,getString(R.string.about_cherry_choice_browser)));break;
?
轉載于:https://www.cnblogs.com/zhen-android/p/5929511.html
總結
以上是生活随笔為你收集整理的Android 如何调用系统默认浏览器访问的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 套接字结构
- 下一篇: Android OkHttp完全解析 是