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
<resources>
     <integer name="input_field_padding" >5</integer>
</resources>
Tried to access the input_field_padding in EditText.
<EditText
        android:id="@+id/user_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"    
        android:padding="@integer/input_field_padding" />
But I got the following exception
java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x10
Is it possible to access it in another resources file or am I missing something?