摘要:
Recently I am trying to run the sliding menu examples which was given in this blog:http://www.curious-creature.org/2012/12/14/android-recipe-3-sliding... 阅读全文
摘要:
内存泄漏(Memory Leak)是指在释放某内存区域之前失去了对它的控制。http://zh.wikipedia.org/wiki/%E5%86%85%E5%AD%98%E6%B3%84%E6%BC%8F内存溢出(Out of memory)是指内存不够用了。http://baike.baidu.... 阅读全文
摘要:
该文所有问题转自:http://www.cnblogs.com/hpboy/p/3307371.html一.算法,数据结构1.排序算法2.查找算法3.二叉树4.广度,深度算法;二.java基础1.集合Collection,List,Map等常用方法,特点,关系;2.线程的同步,中断方式有几种,线程池... 阅读全文
摘要:
Binder is like RPC in java. It enables multi-processes communication. Now we will talking about how to bind service using IBinder class.总共有3种bind serv... 阅读全文
摘要:
As far as I know, SharedPreferences allow us to store some simple data in a named area in our phone. Introduction to the uses of SharedPreferences is ... 阅读全文
摘要:
如果res中某个xml文件未找到,比如layout文件夹中创建了一个add.xml,在java文件中引用时未找到的话(出现cannot be resolved or is not a field),可以查看xml内容是否 正确。 阅读全文
摘要:
BroadcastReceiver is like a doctor in hospital, it works only when patient comes. Doctors are classfied according to their study area. Similarily, Bro... 阅读全文
摘要:
开始前先post出最简单的AndroidManifest.xml文件: Android核... 阅读全文
摘要:
2014.2.25 3 P.M. I came across the first phone interview of my life, no matter what the result is, I did it. I am very happy. What I learned from this interview is, be myself, be a good person, be a competitive person, that's enough to find a job. 阅读全文
摘要:
Two days ago, I came across a problem. After building a restful web service for my app. I happily tried to access the data from the web service using phone. I sent request for data from server using following code:$.ajax({ url: 'http://192.168.1.102:808/quser', type: 'GET', dataType: 阅读全文