As described in this link http://droidista.blogspot.in/2012/04/adding-float-value-to-your-resources.html
Declare in dimen.xml
<item name="my_float_value" type="dimen" format="float">9.52</item>
Referencing from xml
@dimen/my_float_value
Referencing from java
TypedValue typedValue = new TypedValue();
getResources().getValue(R.dimen.my_float_value, typedValue, true);
float myFloatValue = typedValue.getFloat();