https://www.jianshu.com/p/6224f429ce87 window.navigator.userAgent用来区分设备和浏览器 https://blog.csdn.net/liangyihe/article/details/78464656 window.navigator.userAgent.toLowerCase()用来区分设备和浏览器 var sUserAgent = window.navigator.userAgent.toLowerCase(); var bIs…
在项目开发中需要使用到条码扫描,因为以前就测试过ZXing,感觉识别速度和功能都不错,所以直接引用.不过在实际开发的过程中,却遇到连续扫描的问题,每次扫描识别完成之后,扫描窗体自动关闭了. 在Xamarin论坛中查找解决方案,只是找到的iOS版本的解决方案.参考iOS的解决方案,其实就是在扫描完成之后重新打开扫描.按照这个思路,想到使用Intent for result的方式来进行实现.实现方法如下代码: 主窗体: using System; using Android.App; using A…
Mac下的Chrome或Safari访问跨域设置: mac下终端启动Chrome $ open -a Google\ Chrome --args --disable-web-security 或 /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-web-security mac下终端启动Safari(试过没用!) open -a '/Applications/Safari.app' --args --…