// 調用系統默認瀏覽器// 參考:// 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;
?