随笔分类 -  Mono for Android

摘要:/** * 判断系统的网络是否可用 * @return */ private bool isNetworkConnected() { bool net = false; ConnectivityManager connManager = (ConnectivityManager)this.GetSystemService(ConnectivityService); // connManager.ActiveNetworkInfo ==null 手机无法连接网络 if (connManager.ActiveNetworkInfo != null) { //获得 wifi 连接管理 Networ. 阅读全文
posted @ 2013-08-31 10:12 虫虫飞520 阅读(748) 评论(0) 推荐(0)
摘要:The package does not support the device architecture (x86). You can change the supported architectures in the Android Build section of the Project Options.包不支持设备架构(x86)。你可以改变支持架构在Android构建部分的项目选项。解决方法: 属性里面勾上X86 阅读全文
posted @ 2013-08-23 10:26 虫虫飞520 阅读(1241) 评论(1) 推荐(1)