Skip to content

Instantly share code, notes, and snippets.

@searover
Last active August 29, 2015 14:19
Show Gist options
  • Save searover/e3807eae519f072b77b9 to your computer and use it in GitHub Desktop.
Save searover/e3807eae519f072b77b9 to your computer and use it in GitHub Desktop.
Resources obtainStyledAttributes function
public TypedArray obtainStyledAttributes(AttributeSet set,
int[] attrs, int defStyleAttr, int defStyleRes) {
final int len = attrs.length;
final TypedArray array = TypedArray.obtain(Resources.this, len);
// other code .....
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment