一般情况下更新界面采用handler,这里只是调用mlistener的onfilure和onresponse方法,为什么要用handler?
回调处在子线程,要post回UI线程,以便使用者(如Activity中)直接更新UI
。。。