2015年6月28日

高级进阶自己需要掌握的东西

摘要: Android高级开发1.基本项目的开发已经全部从eclipse中转移出来,新项目全部采用Android studio+git开发。2.目前关于grade语法不熟练。相当多的github上的开源引用到As 上因为grade配置问题,常常耗时很多。出错之后,自己的排插也花费了较长的时间... 阅读全文

posted @ 2015-06-28 11:04 AllenCoder 阅读(94) 评论(0) 推荐(0) 编辑

2015年6月8日

Android 数字动画

摘要: Android 数字动画/** * 动画显示数字 * Created by fhp on 15/1/7. */ public class CountView extends NumberView{ //动画时长 ms int duration = 1500; flo... 阅读全文

posted @ 2015-06-08 22:26 AllenCoder 阅读(284) 评论(0) 推荐(0) 编辑

2015年4月7日

pl2303 ch340 max232的区别

摘要: pl2303 作用是:usb电平转TTL电平 ch340 作用是:usb电平转232电平 max232作用是:232电平转TTL电平 九针串口是232电平 usb口是usb电平 单片机是TTL电平 ... 阅读全文

posted @ 2015-04-07 15:22 AllenCoder 阅读(1188) 评论(0) 推荐(0) 编辑

2015年3月25日

android logcat 不输出

摘要: logcat日志使用项目开发中经常要用logcat 打印日志追踪日志信息 但是当你的信息量小的时候或者部分手机rom的非关键logcat设置了,不会遇到logcat用一段时间之后,logcat日志不再输出了 这是大部分的做法是重启eclipse :后来多次与他们交流发现是logcat... 阅读全文

posted @ 2015-03-25 12:38 AllenCoder 阅读(556) 评论(0) 推荐(0) 编辑

2015年3月22日

eclipse 异常Unhandled event loop exception 源头解决办法

摘要: eclipse 异常Unhandled event loop exception 源头解决办法因为部分Android项目一直还采用ADT开发 所以ADT报错是最蛋疼的问题FQ查找和国内百度得到答案总结如下删除workspace 工作区 重新新建工作区网上报百度杀毒引起 处理办法 关闭... 阅读全文

posted @ 2015-03-22 10:50 AllenCoder 阅读(2188) 评论(0) 推荐(0) 编辑

2015年1月25日

Java面试陷阱复习

摘要: 1.Java创建数组时,分为两种,一种静态创建,一种为动态创建。(1)静态创建 如String[] array = {"a", "b", "c"};(2)动态创建 如String[] array = new String[] {"a", "b", "c"};或String[] array = new... 阅读全文

posted @ 2015-01-25 23:12 AllenCoder 阅读(200) 评论(0) 推荐(0) 编辑

Android NDK开发学习教程(一)JNI语法

摘要: 一、对照表Java类型 本地类型 描述boolean jboolean C/C++8位整型byte jbyte C/C++带符号的8位整型char jchar C/C++无符号的16位整型short jshort C/C++带符号的16位整型... 阅读全文

posted @ 2015-01-25 18:55 AllenCoder 阅读(540) 评论(0) 推荐(0) 编辑

2015年1月12日

Java复习

摘要: 1.容器List mList = new ArrayList(); Iterator cIterator = mList.iterator(); for (; cIterator.hasNext();) { System.out.println(cIterator); }2.线程阻塞后,... 阅读全文

posted @ 2015-01-12 23:49 AllenCoder 阅读(84) 评论(0) 推荐(0) 编辑

2014年12月17日

vmware虚拟机上网

摘要: 感谢大神提供方法:vmware虚拟机网络连接 vmware提供了4种网络连接方式,分别是Bridged,Host-only,NAT,Custom;10个虚拟网络,分别是VMnet0-VMnet9。 默认情况下,VMnet0使用的Bridged,VMnet1使用的Host-only,VMnet8使用的... 阅读全文

posted @ 2014-12-17 23:33 AllenCoder 阅读(177) 评论(0) 推荐(0) 编辑

2014年11月19日

java中String byte HexString的转换

摘要: HexString——>byte public static byte[] hexStringToBytes(String hexString) { if (hexString == null || hexString.equals("")) { return null; ... 阅读全文

posted @ 2014-11-19 00:23 AllenCoder 阅读(4027) 评论(0) 推荐(0) 编辑

导航