Android Studio 报Integer types not allowed错误
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使用ViewPager快速切换Fragment时卡顿的优化方案
今天小编就为大家分享一篇关于Android使用ViewPager快速切换Fragment时卡顿的优化方案,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧2018-12-12Android程序报错程序包org.apache.http不存在问题的解决方法
这篇文章主要介绍了Android程序报错"程序包org.apache.http不存在——Android 6.0已经不支持HttpClient" 问题的解决方法,感兴趣的小伙伴们可以参考一下2016-06-06Android仿微信右上角点击加号弹出PopupWindow
这篇文章主要为大家详细介绍了Android仿微信右上角点击加号弹出PopupWindow,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2018-04-04解决Android调用系统分享给微信,出现分享失败,分享多文件必须为图片格式的问题
这篇文章主要介绍了解决Android调用系统分享给微信,出现分享失败,分享多文件必须为图片格式的问题,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-09-09
最新评论