2017年12月28日
摘要: Android的.so文件、ABI和CPU的关系有篇文章描述的很详细了 见 http://blog.csdn.net/xx326664162/article/details/51163905 阅读全文
posted @ 2017-12-28 10:36 alex_wongh 阅读(773) 评论(0) 推荐(0) 编辑
  2017年12月20日
摘要: (win10 64位系统中)Visual Studio 2015+OpenCV 3.3.0环境搭建,100%成功 Visual Studio 2015下载地址:https://msdn.itellyou.cn/Visual Studio Enterprise 2015简体中文版(企业版)KEY:HM 阅读全文
posted @ 2017-12-20 21:28 alex_wongh 阅读(1081) 评论(0) 推荐(0) 编辑
  2017年6月10日
摘要: 一.常用算法(Java实现) 1.选择排序(初级算法) 原理:有N个数据则外循环就遍历N次并进行N次交换。内循环实现将外循环当前的索引i元素与索引大于i的所有元素进行比较找到最小元素索引,然后外循环进行元素交换 第1次遍历,将索引为0的元素与索引大于0的所有元素进行比较找到最小的元素,将最小元素与索 阅读全文
posted @ 2017-06-10 17:53 alex_wongh 阅读(240) 评论(0) 推荐(0) 编辑
  2017年6月5日
摘要: 一.静默安装到system/app目录(要Root权限) 阅读全文
posted @ 2017-06-05 15:08 alex_wongh 阅读(345) 评论(0) 推荐(0) 编辑
  2016年12月6日
摘要: 场景:调用微信等第三方应用时如果生成的版本不是正式签名的可能会调用失败,使用如下脚本不用再为繁琐的发正式签名版而烦恼 app项目中的build.gradle追加如下代码: 阅读全文
posted @ 2016-12-06 15:52 alex_wongh 阅读(462) 评论(0) 推荐(0) 编辑
  2015年8月5日
摘要: 正常的安装步骤好多地方都有写过了,我安装的时候遇到问题百度翻了个遍也没有找到,现在问题已经解决了,发出了分享一下!进入第三步创建数据库的时候提示:由于目标计算机积极拒绝,无法连接。打开phpmyadmin提示解决方案:ping localhost查看和ping127.0.0.1看看结果是不是一样,将... 阅读全文
posted @ 2015-08-05 16:33 alex_wongh 阅读(419) 评论(0) 推荐(0) 编辑
  2015年7月23日
摘要: 需要修改的地方1.InactivityTimer.javapublic synchronized void onActivity() { ... if (Build.VERSION.SDK_INT < 11) { inactivityTask.execute(); }else{ inactiv... 阅读全文
posted @ 2015-07-23 18:04 alex_wongh 阅读(1545) 评论(0) 推荐(0) 编辑
  2015年5月11日
摘要: 1.布局文件中,目标Activity加入以下filter 2.通过发送广播的方式调用 Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); shortcut.putEx... 阅读全文
posted @ 2015-05-11 11:59 alex_wongh 阅读(1225) 评论(0) 推荐(0) 编辑
  2014年7月8日
摘要: http://jingyan.baidu.com/article/148a192196209d4d70c3b168.html 阅读全文
posted @ 2014-07-08 15:08 alex_wongh 阅读(418) 评论(0) 推荐(0) 编辑
  2014年5月8日
摘要: Map map = new TreeMap();//TreeMap本身具有排序功能(默认按键升序排序)map.put(12, "hello");map.put(7, "bravestarr");map.put(20, "world");System.out.println(map.toString(... 阅读全文
posted @ 2014-05-08 20:28 alex_wongh 阅读(431) 评论(0) 推荐(0) 编辑