Android APIs
public class

PlacePhotoResult

extends Object
implements Result Parcelable
java.lang.Object
   ↳ com.google.android.gms.location.places.PlacePhotoResult

Class Overview

The result of a getPhoto(GoogleApiClient) or getScaledPhoto(GoogleApiClient, int, int) request.

For a list and description of possible status codes, see PlacesStatusCodes.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<PlacePhotoResult> CREATOR
Public Methods
int describeContents()
Bitmap getBitmap()
Returns the requested image data.
Status getStatus()
Returns the status of this result.
String toString()
void writeToParcel(Parcel parcel, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.android.gms.common.api.Result
From interface android.os.Parcelable

Fields

public static final Creator<PlacePhotoResult> CREATOR

Public Methods

public int describeContents ()

public Bitmap getBitmap ()

Returns the requested image data.

Returns
  • The image data or null if the request was not successful.

public Status getStatus ()

Returns the status of this result. Use isSuccess() to determine whether the call was successful, and getStatusCode() to determine what the error cause was.

Certain errors are due to failures that can be resolved by launching a particular intent. The resolution intent is available via getResolution().

public String toString ()

public void writeToParcel (Parcel parcel, int flags)