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;
}
誰かが私が間違っていることを知っていますか?