源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Android Studio 报Integer types not allowed错误

  • 时间:2020-11-03 18:40 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Android Studio 报Integer types not allowed错误
Android Studio 报错 [code]Error:(25, 5) Integer types not allowed (at 'android:textSize' with value '12'). [/code] 代码
<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,记得一定带单位 [code] <item name="android:textSize">12sp</item>[/code]
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部