当前位置: 首页 > 工具软件 > Apostrophe > 使用案例 >

Android之编译提示error: Apostrophe not preceded by

尚嘉勋
2023-12-01

1 问题

as编译提示错误如下

error: Apostrophe not preceded by 

 

 

 

 

 

 

2 原因

字符串资源文件里面value包含一个单引号

    <string name="key">Don 't ....</string>

 

 

 

 

 

 

2 解决办法

1) 加双引号 

    <string name="key">"Don 't ...."</string>

2) 加斜杠

    <string name="key">Don \'t ....</string>

 

 

 

 类似资料: