我正在使用适用于 android 的 Drive API v2,当我执行以下方法时,我的应用程序似乎暂停或等待,并且没有返回任何数据。
public About getAbout() throws InterruptedException, ExecutionException {
FutureTask<About> future = new FutureTask<About>(new Callable<About>() {
public About call() throws IOException {
About about = null;
try {
about = _driveService.about().get().execute();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return about;
}
});
About about = future.get();
return about;
}
有谁知道我做错了什么?