首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

直接发起因特网址

2012-09-21 
直接发起网址Intent intent new Intent(Intent.ACTION_VIEW, Uri.parse(http://thedevelopersinfo.com

直接发起网址

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://thedevelopersinfo.com"));
startActivity(intent);

?

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(getResources().getString(R.string.your_link)));
startActivity(intent);

热点排行