A couple more: - `R.*.*` will often hold `int[]`s...
# android
d
A couple more: -
R.*.*
will often hold `int[]`s of resource IDs (or
R.styleable.{ViewType}
, which has the indices of that view type's styleable attributes) - `ContentProvider`s (and
SQLiteDatabase
) use
String[]
for projections, selection args, etc
// derp, discussion about primitives -
Parcelable.Creator
has
public T[] newArray(int size);
- Float arrays of points (for APIs like
Canvas.drawLines()
) which is important if you do a lot of lower-level drawing