ProfilePictureView
A more recent version of this class is available. Check out the latest version.

View that displays the profile photo of a supplied profile ID, while conforming to user specified dimensions.

Extends:FrameLayout
Package:widget
Constructors
ProfilePictureView(Context)

Constructor

public ProfilePictureView(Context context)
ParameterDescription
contextContext for this View
ProfilePictureView(Context, AttributeSet)

Constructor

public ProfilePictureView(Context context, AttributeSet attrs)
ParameterDescription
contextContext for this View
attrsAttributeSet for this View. The attribute 'preset_size' is processed here
ProfilePictureView(Context, AttributeSet, int)

Constructor

public ProfilePictureView(Context context, AttributeSet attrs, int defStyle)
ParameterDescription
contextContext for this View
attrsAttributeSet for this View. The attribute 'preset_size' is processed here
defStyleDefault style for this View
Instance Methods
getPresetSize()

Gets the current preset size type

public final int getPresetSize()
Returns
The current preset size type, if set; CUSTOM if not
setPresetSize(int)

Apply a preset size to this profile photo

public final void setPresetSize(int sizeType)
ParameterDescription
sizeTypeThe size type to apply: SMALL, NORMAL or LARGE
isCropped()

Indicates whether the cropped version of the profile photo has been chosen

public final boolean isCropped()
Returns
True if the cropped version is chosen, false if not.
setCropped(boolean)

Sets the profile photo to be the cropped version, or the original version

public final void setCropped(boolean showCroppedVersion)
ParameterDescription
showCroppedVersionTrue to select the cropped version False to select the standard version
getProfileId()

Returns the profile Id for the current profile photo

public final String getProfileId()
Returns
The profile Id
setProfileId(String)

Sets the profile Id for this profile photo

public final void setProfileId(String profileId)
ParameterDescription
profileIdThe profileId NULL/Empty String will show the blank profile photo
getOnErrorListener()

Returns the current OnErrorListener for this instance of ProfilePictureView

public final OnErrorListener getOnErrorListener()
Returns
The OnErrorListener
setOnErrorListener(OnErrorListener)

Sets an OnErrorListener for this instance of ProfilePictureView to call into when certain errors occur.

public final void setOnErrorListener(OnErrorListener onErrorListener)
ParameterDescription
onErrorListenerThe Listener object to set
setDefaultProfilePicture(Bitmap)

The ProfilePictureView will display the provided image while the specified profile is being loaded, or if the specified profile is not available.

public final void setDefaultProfilePicture(Bitmap inputBitmap)
ParameterDescription
inputBitmapThe bitmap to render until the actual profile is loaded.
Constants
TAG
Tag used when logging calls are made by ProfilePictureView
public static final String TAG
CUSTOM
Indicates that the specific size of the View will be set via layout params. ProfilePictureView will default to NORMAL X NORMAL, if the layout params set on this instance do not have a fixed size. Used in calls to setPresetSize() and getPresetSize(). Corresponds with the preset_size Xml attribute that can be set on ProfilePictureView.
public static final int CUSTOM
SMALL
Indicates that the profile image should fit in a SMALL X SMALL space, regardless of whether the cropped or un-cropped version is chosen. Used in calls to setPresetSize() and getPresetSize(). Corresponds with the preset_size Xml attribute that can be set on ProfilePictureView.
public static final int SMALL
NORMAL
Indicates that the profile image should fit in a NORMAL X NORMAL space, regardless of whether the cropped or un-cropped version is chosen. Used in calls to setPresetSize() and getPresetSize(). Corresponds with the preset_size Xml attribute that can be set on ProfilePictureView.
public static final int NORMAL
LARGE
Indicates that the profile image should fit in a LARGE X LARGE space, regardless of whether the cropped or un-cropped version is chosen. Used in calls to setPresetSize() and getPresetSize(). Corresponds with the preset_size Xml attribute that can be set on ProfilePictureView.
public static final int LARGE