2018-04-12

安卓学习:http://www.runoob.com/w3cnote/android-tutorial-intro.html

1.安卓 设置角标

github:https://github.com/leolin310148/ShortcutBadger

2.二维码相关

(1)github:https://github.com/wz1993/BGAQRCode-Android

(2)zbar 只允许识别二维码/条形码

二维码:

scanner.setConfig(0, Config.ENABLE, 0);//Disable all the Symbolsscanner.setConfig(Symbol.QRCODE, Config.ENABLE, 1);

条形码:

scanner.setConfig(Symbol.CODE128, Config.ENABLE, 1);

scanner.setConfig(Symbol.EAN13, Config.ENABLE, 1);

scanner.setConfig(Symbol.UPCA, Config.ENABLE, 1)

(3)zbar zxing 优劣对比:

1.二者在扫描二维码基本没什么差异

2.条形码识别的角度

zbar 可以识别0˚   180˚ 

 zxing 可以识别0˚ 90˚ 180˚ 270˚

3.数据库litepal

(1)github:https://github.com/LitePalFramework/LitePal

(2)使用方法:https://www.jianshu.com/p/bc68e763c7a2

4.混淆 渠道包

混淆参考:https://www.jianshu.com/p/f3455ecaa56e

渠道包:腾讯乐固

其他

(1)TextView 限制多行,超出部分省略号显示

android:maxLines="1";

android:ellipsize="end";

你可能感兴趣的:(2018-04-12)