@@ -37,13 +37,13 @@ allprojects {
37
37
| DataCleanManager | Android 应用内数据清除工具类 | [ DataCleanManager] [ 10 ] | |
38
38
| MLog | Android Log打印工具类 支持行号 json打印 统一封装| [ MLog] [ 11 ] | |
39
39
| NetUtils | Android 网络状态判断工具类,检测WiFi ,4G网络状态 | [ NetUtils] [ 12 ] | |
40
- | NumberUtil | 金额格式化工具类(支持常用的保留指定位数的小数 和自动格式化处理) | [ NumberUtil] [ 12 ] | |
41
- | RegexUtils | 提供验证邮箱、手机号、电话号码、身份证号码、数字等方法| [ RegexUtils] [ 13 ] | |
42
- | ScreenListener | Android屏幕状态监听工具类(判断 是否处于锁屏,亮屏状态) | [ ScreenListener] [ 14 ] | |
43
- | ScreenUtil | 获取屏幕状态信息 (屏幕宽高 等信息) | [ ScreenUtil] [ 15 ] | |
44
- | StatusBarUtils | 状态栏处理工具类 ,支持沉浸式状态栏| [ StatusBarUtils] [ 16 ] | |
45
- | ToolResource | Android 获取资源工具类 | [ ToolResource] [ 17 ] | |
46
- | TouchEventUtil | Android Touch事件打印辅助工具类 | [ TouchEventUtil] [ 18 ] | |
40
+ | NumberUtil | 金额格式化工具类(支持常用的保留指定位数的小数 和自动格式化处理) | [ NumberUtil] [ 13 ] | |
41
+ | RegexUtils | 提供验证邮箱、手机号、电话号码、身份证号码、数字等方法| [ RegexUtils] [ 14 ] | |
42
+ | ScreenListener | Android屏幕状态监听工具类(判断 是否处于锁屏,亮屏状态) | [ ScreenListener] [ 15 ] | |
43
+ | ScreenUtil | 获取屏幕状态信息 (屏幕宽高 等信息) | [ ScreenUtil] [ 16 ] | |
44
+ | StatusBarUtils | 状态栏处理工具类 ,支持沉浸式状态栏| [ StatusBarUtils] [ 17 ] | |
45
+ | ToolResource | Android 获取资源工具类 | [ ToolResource] [ 18 ] | |
46
+ | TouchEventUtil | Android Touch事件打印辅助工具类 | [ TouchEventUtil] [ 19 ] | |
47
47
48
48
```
49
49
dependencies {
@@ -52,6 +52,11 @@ dependencies {
52
52
```
53
53
### 2.Android 数据库处理工具类
54
54
55
+ | Android 数据库处理工具类 | | | |
56
+ | ------------------------ | ------------------------ | --- | --- |
57
+ | Utils | Android 数据库导出到SD卡 | [ Utils] [ 20 ] | |
58
+
59
+
55
60
```
56
61
dependencies {
57
62
compile 'com.github.AllenCoder.SuperUtils:dbutils:1.0.2'
@@ -60,6 +65,12 @@ dependencies {
60
65
61
66
### 3.Android 多媒体处理工具类
62
67
68
+ | Android 多媒体工具类 | | | |
69
+ | -------------------- | -------------------------- | --- | --- |
70
+ | ImageTakerHelper | 从相机或者相册取图片辅助类 | [ ImageTakerHelper] [ 21 ] | |
71
+ | Utils | | [ Utils] [ 22 ] | |
72
+ | | | | |
73
+
63
74
```
64
75
dependencies {
65
76
compile 'com.github.AllenCoder.SuperUtils:mediautil:1.0.2'
@@ -87,23 +98,25 @@ dependencies {
87
98
```
88
99
89
100
90
- [ 1 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/AppManger.java
91
- [ 2 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/Arith.java
92
- [ 3 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/BitmapUtil.java
93
- [ 4 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/BtnClickUtils.java
94
- [ 5 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/CheckViewInRange.java
95
- [ 6] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataCleanManager.java
96
- [ 7 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataUtil.java
97
-
98
- [ 8 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DateTimeUtil.java
99
- [ 9 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DigestUtils.java
100
- [ 10 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataCleanManager.java
101
- [ 11 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/MLog.java
102
- [ 12 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/NetUtils.java
103
- [ 13] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/RegexUtils.java
104
- [ 14 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ScreenListener.java
105
-
106
- [ 15 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ScreenUtil.java
107
- [ 16 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/StatusBarUtils.java
108
- [ 17 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ToolResource.java
109
- [ 18 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/TouchEventUtil.java
101
+ [ 1 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/AppManger.java
102
+ [ 2 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/Arith.java
103
+ [ 3 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/BitmapUtil.java
104
+ [ 4 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/BtnClickUtils.java
105
+ [ 5 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/CheckViewInRange.java
106
+ [ 6 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataCleanManager.java
107
+ [ 7 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataUtil.java
108
+ [ 8 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DateTimeUtil.java
109
+ [ 9 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DigestUtils.java
110
+ [ 10 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/DataCleanManager.java
111
+ [ 11 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/MLog.java
112
+ [ 12 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/NetUtils.java
113
+ [ 13 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/NetUtils.java
114
+ [ 14 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/RegexUtils.java
115
+ [ 15 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ScreenListener.java
116
+ [ 16 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ScreenUtil.java
117
+ [ 17 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/StatusBarUtils.java
118
+ [ 18 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/ToolResource.java
119
+ [ 19 ] : https://github.com/AllenCoder/SuperUtils/blob/master/apputils/src/main/java/com/allen/apputils/TouchEventUtil.java
120
+ [ 20 ] : https://github.com/AllenCoder/SuperUtils/blob/master/dbutils/src/main/java/com/allen/dbutils/Utils.java
121
+ [ 21 ] : https://github.com/AllenCoder/SuperUtils/blob/master/mediautil/src/main/java/com/allen/mediautil/ImageTakerHelper.java
122
+ [ 22 ] : https://github.com/AllenCoder/SuperUtils/blob/master/mediautil/src/main/java/com/allen/mediautil/Utils.java
0 commit comments