我试图从DoInBackground中的异步任务返回值,但调用get()方法卡住了我的UI。如何将代码重写为回调方法?:publicclassGetUrlDataTaskextendsAsyncTask{Stringresponse;HttpUtilsutil;@OverrideprotectedStringdoInBackground(String...params){try{util=newHttpUtils(params[0]);response=util.getContent();}catch(Exceptione){//TODOAuto-generatedcatchblock