databinding在xml中使用汉语的错误
报错信息
Caused by: org.apache.xerces.impl.io.MalformedByteSequenceException: Invalid byte 3 of 3-byte UTF-8
属于不同平台下,字符集不同导致的。xml
使用的字符常量,还是要定义在strings.xml
中。
解决方案:见 传送门1 传送门2
WebView在系统App中使用出错的问题
报错信息
webViwe 报错 For security reasons, WebView is not allowed in privileged processes
当我们申请我们的app为系统应用,也就是当我们在AndroidManifest文件中添加
android:sharedUserId=“android.uid.system”
这一行的时候,如果我们使用webView就会报错:For security reasons, WebView is not allowed in privileged processes。
这个是8.0代码中的一种安全机制。
解决方案:见传送门
代理问题,报错 : Connect to 127.0.0.1:8085
在 gradle.properties
中,删除相应的代理配置。
如果没有就去全局配置目录,去 gradle 默认全局配置里去删除掉代理配置了,对应位置
- Windows 在:C:\Users\Administrator.gradle下的gradle.properties中
- Mac 在:/Users/.{你的用户目录}/.gradle下的gradle.properties中
参考资料:Android Studio 常见 Connect to 127.0.0.1问题处理
一直 Download maven-metadata.xml
因为 maven仓库引用了无效的地址,或者因为墙的原因引用了无法访问的地址。
例如 maven { url "https://maven.google.com" }
解决:把无效的删除即可,使用国内的镜像替代。例如:阿里云maven
OKHttp+Retrofit报错:End of input at line 1 column 1 path $
属于接口返回内容为空,content lenght=0的情况,可以通过扩展retrofit
转换器实现。参考资料:链接