从 GeoDataClient.getPlacePhotos() 获取照片时出现 illegalStateException

illegalStateException while getting photo from GeoDataClient.getPlacePhotos()

我指的是 Google Places photo android api。 我在 RecyclerView Adapter 的 onBindViewHolder 中使用以下代码。 一半的时间它抛出非法状态异常。请帮忙。

 final Task<PlacePhotoMetadataResponse> photoMetadataResponse = mGeoDataClient.getPlacePhotos(placeId);
        photoMetadataResponse.addOnCompleteListener(new OnCompleteListener<PlacePhotoMetadataResponse>() {
            @Override
            public void onComplete(@NonNull Task<PlacePhotoMetadataResponse> task) {
                // Get the list of photos.
                PlacePhotoMetadataResponse photos = task.getResult();
                // Get the PlacePhotoMetadataBuffer (metadata for all of the photos).
                PlacePhotoMetadataBuffer photoMetadataBuffer = photos.getPhotoMetadata();
                // Get the first photo in the list.
                PlacePhotoMetadata photoMetadata = photoMetadataBuffer.get(0);
                // Get the attribution text.
                CharSequence attribution = photoMetadata.getAttributions();
                // Get a full-size bitmap for the photo.
                Task<PlacePhotoResponse> photoResponse = mGeoDataClient.getPhoto(photoMetadata);
                photoResponse.addOnCompleteListener(new OnCompleteListener<PlacePhotoResponse>() {
                    @Override
                    public void onComplete(@NonNull Task<PlacePhotoResponse> task) {
                        PlacePhotoResponse photo = task.getResult();
                        Bitmap bitmap = photo.getBitmap();
                        ByteArrayOutputStream stream = new ByteArrayOutputStream();
                        bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
                        Glide.with(mContext)
                                .load(stream.toByteArray())
                                .asBitmap()
                                .error(R.drawable.cast_album_art_placeholder)
                                .centerCrop()
                                .thumbnail(.2f)
                                .into(holder.placeImage);

                    }
                });
            }
        });

堆栈跟踪:

E/UncaughtException: java.lang.IllegalStateException
                                                                at com.google.android.gms.common.internal.zzbp.zzbg(Unknown Source)
                                                                at com.google.android.gms.common.data.zzc.zzbu(Unknown Source)
                                                                at com.google.android.gms.common.data.zzc.<init>(Unknown Source)
                                                                at com.google.android.gms.location.places.internal.zzav.<init>(Unknown Source)
                                                                at com.google.android.gms.location.places.internal.zzar.<init>(Unknown Source)
                                                                at com.google.android.gms.location.places.PlacePhotoMetadataBuffer.get(Unknown Source)

我相当确定问题是您的应用程序崩溃是因为您试图从没有照片可显示的位置检索照片。在尝试检索 photoMetadataBuffer.get(0) 中的第一张照片之前,您必须进行空检查。这是一个很好的例子,说明 Google 的文档与所提供的示例代码相比有些不完整。你应该有如下内容:

// Get the first photo in the list.
if (photoMetadataBuffer != null) {
    PlacePhotoMetadata photoMetadata = photoMetadataBuffer.get(0);
// continue with your code
}

如果 photoMetadataBuffer 为 null,则没有要显示的照片,您可以适当地处理您的应用程序逻辑,例如加载默认图像、向用户提供反馈或不显示 ImageView。

即使这个问题已经将近一年了,而且由于给定的答案没有解决我的错误,我还是会分享我的解决方案:

// Get the first photo in the list.
if (photoMetadataBuffer.getCount() > 0) {
    PlacePhotoMetadata photoMetadata = photoMetadataBuffer.get(0);
// continue with your code
}

这是因为 photoMetadataBuffer 不为空。 但是,是的,错误只发生在没有图片的地方。