Android Studio 报Integer types not allowed错误

时间:2021-05-21

Android Studio 报错

Error:(25, 5) Integer types not allowed (at 'android:textSize' with value '12').

代码

<style name="HorizontalBtnLayout"> <item name="android:layout_height">match_parent</item> <item name="android:layout_width">0dp</item> <item name="android:layout_weight">1</item> <item name="android:textSize">12</item> </style>

分析:

1.是不是<style> </style>标签内不能使用android:textSize,系统有提示,说明可以的
2.根据报错Integer tyes is not allowed,考虑到是不是类型有问题,😝,改为12sp已ok
3,记得一定带单位

<item name="android:textSize">12sp</item>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章