
android_net
文章平均质量分 77
堕落的天使
性格开朗 乐于助人
展开
-
android Uri类
1)调用浏览器,加载指定网址 Uri uri = Uri.parse("http://www.baidu.com"); Intent it = new Intent(Intent.ACTION_VIEW, uri);原创 2011-09-26 20:43:04 · 2579 阅读 · 0 评论 -
android NetworkInfo类
获取网络信息需要在AndroidManifest.xml文件中加入相应的权限。 1)判断是否有网络连接 public boolean isNetworkConnected(Context context) { if (context != null) { ConnectivityManager mConnectivityManager = (Co原创 2012-06-04 10:57:21 · 13784 阅读 · 1 评论