摘要: Collection ├List │├LinkedList │├ArrayList │└Vector │ └Stack └Set Map ├Hashtable ├HashMap └WeakHashMap Map map = new HashMap();Iterator iter = map.entrySet().iterator();while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey(); Object val = entry.getValue();}Hash 阅读全文
posted @ 2013-05-27 17:32 火腿骑士 阅读(154) 评论(0) 推荐(0)
摘要: https://github.com/white-cat/ThinkAndroidhttp://www.thinkandroid.cn/forum.php?mod=viewthread&tid=3609&extra=page=1http://www.thinkandroid.cn/thread-3365-1-1.html(使用教程) 阅读全文
posted @ 2013-05-27 12:35 火腿骑士 阅读(146) 评论(0) 推荐(0)
摘要: http://www.csdn.net/article/2013-05-03/2815127-Android-open-source-projectshttp://blog.csdn.net/sunboy_2050/article/details/8882236直接拿来用!最火的Android开源项目(一)发表于2013-05-03 14:58| 54703次阅读| 来源CSDN| 525 条评论| 作者唐小引GitHubAndroid开源项目移动开发最受欢迎的开源项目 摘要:对于开发者而言,了解当下比较流行的开源项目很是必要。利用这些项目,有时能够让你达到事半功倍的效果。为此,CSDN特整理 阅读全文
posted @ 2013-05-27 10:40 火腿骑士 阅读(144) 评论(0) 推荐(0)