In a traditional camera, the lens was king. If
the lens delivered a decent image, exactly that image would be recorded on the
film. As the original im...
分类:
其他好文 时间:
2014-05-24 06:25:15
阅读次数:
348
This Saturday marks probably the most
anticipated Jordans releases of the season - theAir Jordan 6. Honoring 23 years
because the original discharge o...
分类:
其他好文 时间:
2014-05-23 08:28:33
阅读次数:
254
Given a sorted linked list, delete all nodes
that have duplicate numbers, leaving onlydistinctnumbers from the original
list.For example,Given1->2->3-...
分类:
其他好文 时间:
2014-05-21 17:51:09
阅读次数:
190
1、
??
Distinct Subsequences
Given a string S and a string T, count the number of distinct subsequences of T in S.
A subsequence of a string is a new string which is formed from the original str...
分类:
其他好文 时间:
2014-05-14 20:22:58
阅读次数:
275
最近在看Jdk6中String的源码的时候发现String的有个这样的构造方法,源代码内容如下:public String(String original)
{ int size = original.count; char[] originalValue = original.value; cha...
分类:
其他好文 时间:
2014-05-14 11:34:24
阅读次数:
274
主线程创建的时候会默认创建Looper、HandlerThread则是内置Looper,除此之外其他的线程创建时是不会创建Looper的,需手动创健线程自己的Looper。子线程更新主线程创建的控件引发的错误:Onlytheoriginalthreadthatcreatedaviewhierarchycantouchitsviews默认情况下Handler会与..
分类:
其他好文 时间:
2014-05-13 12:40:28
阅读次数:
308
这个错误很常见,基本上写线程操作都遇到过这个错误。根本原因是view控件的线程安全问题,通俗点讲就是所有的更新UI操作都需要在主线程(也就是UI线程中完成),而不能在新开的子线程中操作。
基本思路:既然子线程需要更新UI,但子线程自身又不能完成任务,所以只能通过建立一个通信机制,当子线程需要更新UI时,发消息通知主线程并将更新UI的任务post给主线程,让主线程来完成分内的UI更新操作。这个...
分类:
其他好文 时间:
2014-05-13 09:04:37
阅读次数:
311
本文翻译自https://devmaze.wordpress.com/2011/01/18/using-com-android-internal-part-3-custom-android-platform/在前一篇文章中我展示了如何创建定制的original-android.jar,包含内部API...
分类:
移动开发 时间:
2014-05-08 22:53:47
阅读次数:
481
本文翻译自http://devmaze.wordpress.com/2011/01/18/using-com-android-internal-part-4-customizing-adt/在前面的文章中,我讲述了如何创建定制的original-android.jar和创建定制的android平台以...
分类:
移动开发 时间:
2014-05-08 22:51:15
阅读次数:
483
1.表和数据恢复1、从回收站里查询被删除的表 select
object_name,original_name,partition_name,type,ts_name,createtime,droptime from
recyclebin; 2.执行表的恢复语句 flashback table ta...
分类:
数据库 时间:
2014-05-08 11:26:33
阅读次数:
350