'1'与属性textSize(attr)尺寸不兼容

时间:2018-12-09 17:30:46

标签: android android-gradle

在出现此问题之前,我无法更改代码。但是,这是在我构建项目时发生的。我无法解决并了解它是什么?请问你能帮帮我吗?我使用Android Studio 3.2.1

Output:  
C:\Users\Lenovo\AndroidStudioProjects\Paintmet\app\src\main\res\drawable- 
v24\ic_launcher_foreground.xml:7: error: '1' is incompatible with attribute 
textSize (attr) dimension.

v21\ic_launcher_background.xml:10: error: '0.8' is incompatible with 
attribute textSize (attr) dimension.
...

2 个答案:

答案 0 :(得分:1)

您需要一个单位,例如spdppx

建议对文本使用sp,因为这会随着系统字体大小和系统密度而缩放。 10.8很小。您至少需要14sp

android:textSize="18sp"

答案 1 :(得分:0)

最后我找到了答案。答案是删除res文件夹中的drawable文件夹。然后将其复制到其他项目的可绘制文件夹。