Skip to content

Instantly share code, notes, and snippets.

@hanleyhansen
Created June 7, 2013 19:06
Show Gist options
  • Save hanleyhansen/5deadaebea36e23b0579 to your computer and use it in GitHub Desktop.
Save hanleyhansen/5deadaebea36e23b0579 to your computer and use it in GitHub Desktop.
private class HexagonConstantState extends ConstantState
{
HexagonDrawable mDrawable = null;
public int getChangingConfigurations()
{
return 0;
}
public Drawable newDrawable()
{
if (mDrawable == null)
mDrawable = new HexagonDrawable();
return mDrawable;
}
}
private HexagonConstantState mConstantState = null;
@Override
public ConstantState getConstantState()
{
if (mConstantState == null)
mConstantState = new HexagonConstantState();
return mConstantState;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment