I have read this where found that how to access integer resources in java class but no docs for another resource.
Here is Resources at res/values/integers.xml
Also You Can Define It This Way :
- 10
Format = enclosing data type:
float boolean fraction integer ... and type stands for:
Type = resource type (referenced with R.XXXXX.name):
color dimen string style etc...
Access It Like This :
Resources res = getResources();
int i= res.getInteger(R.dimen.int_value);