引用:https://blog.csdn.net/android157/article/details/89374568
点击AndroidStudio菜单File -> Invalidate Caches/Restar… ,在弹出的对话框中点击Invalidate and Restar 。等待AS清理并自动重启。
Android webview打开网址异常
某些网站在低版本Android设备上使用异常,处理方式:setAgentSetting属性,当作电脑网页打开。
wv_miniweb.getSettings().setUserAgentString(“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36”);
kotlin泛型
1、out 相当于 extends(协变). in 相当于 super(逆变)
2、星投影,可以用get取值,不能set值