Skip to content

Commit 240020b

Browse files
author
Blankj
committed
see 11/29 log
1 parent 15a4eaa commit 240020b

6 files changed

Lines changed: 5 additions & 8 deletions

File tree

buildSrc/src/main/groovy/Config.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Config {
4040
lib_base : new DepConfig(true, true, ":lib:base"),
4141
lib_common : new DepConfig(true, true, ":lib:common"),
4242
lib_subutil : new DepConfig(true, true, ":lib:subutil"),
43-
lib_utilcode : new DepConfig(true, true, ":lib:utilcode", "com.blankj:utilcode:1.25.10-alpha5"),
43+
lib_utilcode : new DepConfig(true, true, ":lib:utilcode", "com.blankj:utilcode:1.26.0"),
4444
lib_utildebug : new DepConfig(true, true, ":lib:utildebug", "com.blankj:utildebug:1.25.10-alpha5"),
4545
lib_utildebug_no_op : new DepConfig(true, true, ":lib:utildebug-no-op", "com.blankj:utildebug-no-op:1.25.10-alpha5"),
4646
/*Never delete this line*/

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{"isApply": true, "useLocal": true, "localPath": ":lib:base"},
2121
{"isApply": true, "useLocal": true, "localPath": ":lib:common"},
2222
{"isApply": true, "useLocal": true, "localPath": ":lib:subutil"},
23-
{"isApply": true, "useLocal": true, "localPath": ":lib:utilcode", "remotePath": "com.blankj:utilcode:1.25.10-alpha5"},
23+
{"isApply": true, "useLocal": true, "localPath": ":lib:utilcode", "remotePath": "com.blankj:utilcode:1.26.0"},
2424
{"isApply": true, "useLocal": true, "localPath": ":lib:utildebug", "remotePath": "com.blankj:utildebug:1.25.10-alpha5"},
2525
{"isApply": true, "useLocal": true, "localPath": ":lib:utildebug-no-op", "remotePath": "com.blankj:utildebug-no-op:1.25.10-alpha5"}
2626
]

lib/subutil/src/test/java/com/blankj/subutil/util/BaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ public BaseTest() {
3030

3131
@Test
3232
public void test() throws Exception {
33-
33+
System.out.println("1234");
3434
}
3535
}

lib/utilcode/README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ registerNetworkStatusChangedListener : 注册网络状态改变监听器
667667
unregisterNetworkStatusChangedListener: 注销网络状态改变监听器
668668
```
669669

670-
* ### 对象相关 -> [NotificationUtils.java][notification.java] -> [Demo][notification.demo]
670+
* ### 通知相关 -> [NotificationUtils.java][notification.java] -> [Demo][notification.demo]
671671
```
672672
areNotificationsEnabled : 判断通知是否可用
673673
notify : 发送通知

lib/utilcode/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ addMarginTopEqualStatusBarHeight
126126
subtractMarginTopEqualStatusBarHeight
127127
setStatusBarColor
128128
setStatusBarColor4Drawer
129+
transparentStatusBar
129130
getActionBarHeight
130131
setNotificationBarVisibility
131132
getNavBarHeight

lib/utilcode/src/main/java/com/blankj/utilcode/util/KeyboardUtils.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,6 @@ public void onGlobalLayout() {
195195
* @param window The window.
196196
*/
197197
public static void unregisterSoftInputChangedListener(@NonNull final Window window) {
198-
final int flags = window.getAttributes().flags;
199-
if ((flags & WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS) != 0) {
200-
window.clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
201-
}
202198
final FrameLayout contentView = window.findViewById(android.R.id.content);
203199
Object tag = contentView.getTag(TAG_ON_GLOBAL_LAYOUT_LISTENER);
204200
if (tag instanceof OnGlobalLayoutListener) {

0 commit comments

Comments
 (0)