114114
115115***
116116
117- ** 做这份整理只是想把它作为Android的一本小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走。希望它能逐日壮大起来,期待你的Star和完善,用途的话大家想把它们整理成工具类或者什么的话都可以,之后我也会封装工具类并分享之,但本篇只是提供查阅,毕竟看md比看类文件要爽多了,其中好多代码我也是各种搜刮来的,也要谢谢各位的总结,大部分代码已验证过可行,如有错误,请及时告之,开设QQ群提供讨论,群号:74721490**
117+ ** 做这份整理只是想把它作为Android的一本小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走。希望它能逐日壮大起来,期待你的Star和完善,用途的话大家想把它们整理成工具类或者什么的话都可以,之后我也会封装工具类并分享之,但本篇只是提供查阅,毕竟看md比看类文件要爽多了,其中好多代码我也是各种搜刮来的,也要谢谢各位的总结,大部分代码已验证过可行,如有错误,请及时告之,开设QQ群提供讨论,群号:74721490**
118118
119- ## Download
119+ Download
120120------
121121Gradle:
122122``` groovy
123123compile 'com.blankj:utilcode:1.0'
124124```
125125
126- ## Proguard
126+ Proguard
127127------
128128``` xml
129129-keep class com.blankj.utilcode.** { *; }
130130-keepclassmembers class com.blankj.utilcode.** { *; }
131131-dontwarn com.blankj.utilcode.**
132132```
133133
134- ## License
134+ License
135135------
136136 Copyright 2016 Blankj
137137
@@ -147,52 +147,35 @@ compile 'com.blankj:utilcode:1.0'
147147 See the License for the specific language governing permissions and
148148 limitations under the License.
149149
150-
151- ## 更新Log
152- ------
153- #### 16/08/08 新增Shell工具类,已传jcenter()遇到好多坑,javaDoc惹的祸,注释一定要规范
154- #### 16/08/07 新增6.0获取Mac地址方法,新增对HTML转义,新增编码解码工具类,新增SP工具类
155- #### 16/08/06 重命名包名,新增加密相关的单元测试,MD5加密新增文件加密重载。
156- #### 16/08/05 加密新增MD5盐加密,完善NetworkUtils,新增判断状态栏是否存在(在此感谢tiandawu)
157- #### 16/08/04 新增时间工具类(在此感谢yi520000给的补充),手机正则分简单和精确(在此感谢MIkeeJY),新增判断是否锁屏,注释分段落,目录按首字母排序
158- #### 16/08/03 修复在onCreate中获取view尺寸的bug,MD5和SHA的Bug修复完成(在此感谢ssyijiu)
159- #### 16/08/02 wifi设置界面bug修复,注释排版还在修改,获取mac地址增加判空,新增QQ群:74721490,欢迎加入新增隐藏状态栏,注释更加全面,工具类已封装,写的时候真的是一个一个测试过去的,宝宝心里苦
160- #### 16/08/01 新增获取SD卡路径,手机和设备进行分类,代码bug修改部分,小修排版,正在封装类,新增目录中显示方法名,新增获取当前App版本Code
161- #### 16/07/31 新增点击屏幕空白区域隐藏软键盘,未能成功增加本页目录跳转功能(不支持)
162-
163-
164-
165- ##[ 关于Blankj] [ blankj ]
166150
167151
168- [ app.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_app.md
152+ [ app.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_app.md
169153[ app.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/AppUtils.java
170- [ device.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_device.md
154+ [ device.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_device.md
171155[ device.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/DeviceUtils.java
172- [ encode.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_encode.md
156+ [ encode.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_encode.md
173157[ encode.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/EncodeUtils.java
174- [ encrypt.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_encrypt.md
158+ [ encrypt.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_encrypt.md
175159[ encrypt.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/EncryptUtils.java
176- [ keyboard.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_keyboard.md
160+ [ keyboard.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_keyboard.md
177161[ keyboard.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/KeyboardUtils.java
178- [ network.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_network.md
162+ [ network.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_network.md
179163[ network.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/NetworkUtils.java
180- [ phone.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_phone.md
164+ [ phone.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_phone.md
181165[ phone.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/PhonekUtils.java
182- [ regular.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_regular.md
166+ [ regular.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_regular.md
183167[ regular.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/RegularUtils.java
184- [ screen.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_screen.md
168+ [ screen.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_screen.md
185169[ screen.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/ScreenUtils.java
186- [ shell.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_shell.md
170+ [ shell.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_shell.md
187171[ shell.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/ShellUtils.java
188- [ size.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_size.md
172+ [ size.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_size.md
189173[ size.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/SizeUtils.java
190- [ sp.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_sp.md
174+ [ sp.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_sp.md
191175[ sp.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/SPUtils.java
192- [ time.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/about_time.md
176+ [ time.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ about_time.md
193177[ time.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/TimeUtils.java
194- [ unclassified.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/unclassified.md
178+ [ unclassified.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ unclassified.md
195179[ unclassified.java ] : https://github.com/Blankj/AndroidUtilCode/blob/master/utilcode/src/main/java/com/blankj/utilcode/utils/UnclassifiedUtils.java
196- [ update_log.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/update_log.md
180+ [ update_log.md ] : https://github.com/Blankj/AndroidUtilCode/blob/master/md/ update_log.md
197181
198- [ blankj ] : http://blankj.com/about
0 commit comments