在出现此问题之前,我无法更改代码。但是,这是在我构建项目时发生的。我无法解决并了解它是什么?请问你能帮帮我吗?我使用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.
...
答案 0 :(得分:1)
您需要一个单位,例如sp
,dp
或px
。
建议对文本使用sp
,因为这会随着系统字体大小和系统密度而缩放。 1
和0.8
很小。您至少需要14sp
。
android:textSize="18sp"
答案 1 :(得分:0)
最后我找到了答案。答案是删除res文件夹中的drawable文件夹。然后将其复制到其他项目的可绘制文件夹。