Android9.0 xml中添加float无法编译通过

直接在integer.xml中添加item float,编译时无法通过  unknown resource type 'item' 

需要如下添加格式
1.0

0.3


引用

TypedValue outValue = new TypedValue();

context.getResources().getValue(R.dimen.pin_alpha_for_focused_number_f, outValue, true);

你可能感兴趣的:(Android9.0 xml中添加float无法编译通过)