0
PlacePhotoMetadataResult result3 = Places.GeoDataApi.getPlacePhotos(mGoogleApiClient3,place.getId()).await();
if (result3.getStatus().isSuccess() && result3!= null){
PlacePhotoMetadataBuffer placePhotoMetadataBuffer = result3.getPhotoMetadata();
PlacePhotoMetadata photo = placePhotoMetadataBuffer.get(0);
Bitmap image = photo.getPhoto(mGoogleApiClient3).await().getBitmap();
imageView = (ImageView)findViewById(R.id.image3);
imageView.setImageBitmap(image);
}
このコードでGoogle APIクライアントを構築するにはどうすればいいですか、Google Place APIで画像にアクセスする方法はありますか?GoogleプレイスAPIから画像を抽出する方法android