android开发遇到的问题小记

1 jousp解析url这个异常

[java.io.IOException: Mark has been invalidated when parsing website with jsoup]

在stack overflow上面找到了解决方法有用!
https://stackoverflow.com/questions/47733379/java-io-ioexception-mark-has-been-invalidated-when-parsing-website-with-jsoup

2 android 8.0系统回调activity 不能同时设置android:screenOrientation="" 和 true。否则会闪退。去掉一个属性就不会闪退了。


解决资源文件错误找不到错误文件的问题,在Terminal中敲入下面命令中的一个

gradle compileDebug --stacktrace

gradle compileDebug --stacktrace -info

gradle compileDebug --stacktrace -debug
4.(推荐)

gradle compileDebugSources --stacktrace -info

你可能感兴趣的:(android开发遇到的问题小记)