今天在项目中遇到了一个求平均值的需求,大致需求就是,页面上面有四个input框,失去焦点就计算平均值,结果保留两位小数,并输出在页面上。不多说了,直接奉上代码,如有更好思路或者想法,都欢迎大家和我讨论。代码如下:html: js:function handler(arr,avgId){ v...
分类:
Web程序 时间:
2014-08-27 21:41:58
阅读次数:
670
当在非UI线程中更新UI(程序界面)时会出现如下图所示的异常:
Only the original thread that created a view hierarchy can touch its views.
那如何才能在非UI线程中更细UI呢?
方法有很多种,在这里主要介绍两种:
第一种:在需要更新UI的代码行后加Looper.prepare();与Looper.loop();两句话即可。如:...
分类:
移动开发 时间:
2014-08-27 20:34:08
阅读次数:
352
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
转自http://www.cnblogs.com/hnrainll/p/3597246.html介绍首先我们来看看为什么我们要使用HandlerThread?在我们的应用程序当中为了实现同时完成多个任务,所以我们会在应用程序当中创建多个线程。为了让多个线程之间能够方便的通信,我们会使用Handler...
分类:
移动开发 时间:
2014-08-26 16:54:56
阅读次数:
213
1.SpringHandlerInterceptor 可以组成一个chain。这个接口有三个方法:public interface HandlerInterceptor { /** * Intercept the execution of a handler. Called after...
分类:
编程语言 时间:
2014-08-26 15:24:46
阅读次数:
277
Handler mHandler = new Handler() { ? ? @Override ? ? public void handleMessage(Message msg) { ? ? ? ?? ???// do something. ? ? } } ``` 当我们这样创建`Handler`的时候`Android Lint`会提示...
分类:
其他好文 时间:
2014-08-26 13:52:36
阅读次数:
245
//接受子线程发来的消息 Handler hanler = new Handler() { @Override public void handleMessage(Message msg) { ...
分类:
移动开发 时间:
2014-08-26 11:16:06
阅读次数:
153