Most visited

Recently visited

Added in API level 1

DrawableContainer.DrawableContainerState

public static abstract class DrawableContainer.DrawableContainerState
extends Drawable.ConstantState

java.lang.Object
   ↳ android.graphics.drawable.Drawable.ConstantState
     ↳ android.graphics.drawable.DrawableContainer.DrawableContainerState


A ConstantState that can contain several Drawables. This class was made public to enable testing, and its visibility may change in a future release.

Summary

Public methods

final int addChild(Drawable dr)

Adds the drawable to the end of the list of contained drawables.

boolean canApplyTheme()

Return whether this constant state can have a theme applied.

boolean canConstantState()
int getChangingConfigurations()

Return a bit mask of configuration changes that will impact this drawable (and thus require completely reloading it).

final Drawable getChild(int index)
final int getChildCount()
final Drawable[] getChildren()
final int getConstantHeight()
final int getConstantMinimumHeight()
final int getConstantMinimumWidth()
final Rect getConstantPadding()
final int getConstantWidth()
final int getEnterFadeDuration()
final int getExitFadeDuration()
final int getOpacity()
void growArray(int oldSize, int newSize)
final boolean isConstantSize()
final boolean isStateful()
final void setConstantSize(boolean constant)
final void setEnterFadeDuration(int duration)
final void setExitFadeDuration(int duration)
final void setVariablePadding(boolean variable)

A boolean value indicating whether to use the maximum padding value of all frames in the set (false), or to use the padding value of the frame being shown (true).

Protected methods

void computeConstantSize()

Inherited methods

From class android.graphics.drawable.Drawable.ConstantState
From class java.lang.Object

Public methods

addChild

Added in API level 1
int addChild (Drawable dr)

Adds the drawable to the end of the list of contained drawables.

Parameters
dr Drawable: the drawable to add
Returns
int the position of the drawable within the container

canApplyTheme

Added in API level 21
boolean canApplyTheme ()

Return whether this constant state can have a theme applied.

Returns
boolean

canConstantState

Added in API level 1
boolean canConstantState ()

Returns
boolean

getChangingConfigurations

Added in API level 1
int getChangingConfigurations ()

Return a bit mask of configuration changes that will impact this drawable (and thus require completely reloading it).

Returns
int

getChild

Added in API level 19
Drawable getChild (int index)

Parameters
index int
Returns
Drawable

getChildCount

Added in API level 1
int getChildCount ()

Returns
int

getChildren

Added in API level 1
Drawable[] getChildren ()

Returns
Drawable[]

getConstantHeight

Added in API level 1
int getConstantHeight ()

Returns
int

getConstantMinimumHeight

Added in API level 1
int getConstantMinimumHeight ()

Returns
int

getConstantMinimumWidth

Added in API level 1
int getConstantMinimumWidth ()

Returns
int

getConstantPadding

Added in API level 1
Rect getConstantPadding ()

Returns
Rect

getConstantWidth

Added in API level 1
int getConstantWidth ()

Returns
int

getEnterFadeDuration

Added in API level 11
int getEnterFadeDuration ()

Returns
int

getExitFadeDuration

Added in API level 11
int getExitFadeDuration ()

Returns
int

getOpacity

Added in API level 1
int getOpacity ()

Returns
int

growArray

Added in API level 1
void growArray (int oldSize, 
                int newSize)

Parameters
oldSize int
newSize int

isConstantSize

Added in API level 1
boolean isConstantSize ()

Returns
boolean

isStateful

Added in API level 1
boolean isStateful ()

Returns
boolean

setConstantSize

Added in API level 1
void setConstantSize (boolean constant)

Parameters
constant boolean

setEnterFadeDuration

Added in API level 11
void setEnterFadeDuration (int duration)

Parameters
duration int

setExitFadeDuration

Added in API level 11
void setExitFadeDuration (int duration)

Parameters
duration int

setVariablePadding

Added in API level 1
void setVariablePadding (boolean variable)

A boolean value indicating whether to use the maximum padding value of all frames in the set (false), or to use the padding value of the frame being shown (true). Default value is false.

Parameters
variable boolean

Protected methods

computeConstantSize

Added in API level 11
void computeConstantSize ()

Hooray!