Android Studio 报Integer types not allowed错误

Android Studio 报Integer types not allowed错误,第1张

概述AndroidStudio报错Error:(25,5)Integertypesnotallowed(at\'android:textSize\'withvalue\'12\').代码<stylename=\"HorizontalBtnLayout\">

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>

总结

以上是内存溢出为你收集整理的Android Studio 报Integer types not allowed错误全部内容,希望文章能够帮你解决Android Studio 报Integer types not allowed错误所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144163.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存