public void handleMessage(Message msg){ closeProgressDialog(); if(msg.what==Constant.SUCCESS){ if(msg.obj==null){ CommonUtil.showInfoDialog(context, getString(R.string.net_error)); }else{ callBack.processData(msg.obj, true); } }else if(msg.what==Constant.NET_FAILED){ Commo...