android异步任务参数,如何从android中的异步任务返回值
我创建了一个异步任务来调用我的服务器从DB获取数据。我需要处理从http服务器调用返回的结果。从我的活动我在许多地方调用异步任务。 所以我不能使用成员variables来访问结果。 有什么办法吗?public Result CallServer(String params) { try { new MainAynscTask().execute(params); } catch(Exception...