1.LoadingActivity public class LoadingActivity extends Activity implements Handler.Callback{ private Handler mHandler; private Timer mTimer; pri...
分类:
移动开发 时间:
2014-08-31 22:51:21
阅读次数:
204
WinForms提供了若干标准组件,包括BackGroundWorker、DirectoryEntry、DirectorySearcher、ErrorProvider、EventLog、FileSystemWatcher、HelpProvider、ImageList、MessageQueue、Process、PerformanceCounter、Serialport、ServiceController、Timer等。...
分类:
其他好文 时间:
2014-08-31 01:41:50
阅读次数:
189
在java中可有两种方式实现多线程,一种是继承Thread类,一种是实现Runnable接口;Thread类是在java.lang包中定义的。一个类只要继承了Thread类同时覆写了本类中的run()方法就可以实现多线程操作了,但是一个类只能继承一个父类,这是此方法的局限。下面看例子:代码如下:pa...
分类:
移动开发 时间:
2014-08-29 17:55:08
阅读次数:
186
转载文章简介:handler method 参数绑定常用的注解,我们根据他们处理的Request的不同内容部分分为四类:(主要讲解常用类型)A、处理requet uri 部分(这里指uri template中variable,不含queryString部分)的注解: @PathVariable;B、...
分类:
其他好文 时间:
2014-08-29 15:58:48
阅读次数:
244
本文回答了“为什么使用Handler能跨线程更新UI?”,同时从源码角度剖析了暗藏在Handler背后的玄机:Looper(封装了消息循环)和MessageQueue(消息队列),它们是所有App(Activity)得以运作的核心。Handler本质上具有两个角色——消息队列的窗口(Handler.sendMessage)、处理消息的回调(Handler.handleMessage)。最后指出,后台线程通过Handler更新UI本质上是“生产者消费者问题”。...
分类:
移动开发 时间:
2014-08-28 18:07:55
阅读次数:
313
今天在项目中遇到了一个求平均值的需求,大致需求就是,页面上面有四个input框,失去焦点就计算平均值,结果保留两位小数,并输出在页面上。不多说了,直接奉上代码,如有更好思路或者想法,都欢迎大家和我讨论。代码如下:html: js:function handler(arr,avgId){ v...
分类:
Web程序 时间:
2014-08-27 21:41:58
阅读次数:
670
Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Loope解决办法:
分类:
移动开发 时间:
2014-08-27 18:23:18
阅读次数:
208
function addFileToZip($path,$zip){$handler=opendir($path); //打开当前文件夹由$path指定。while(($filename=readdir($handler))!==false){if($filename != "." && $file...
分类:
Web程序 时间:
2014-08-27 12:42:57
阅读次数:
203