Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
36a07560
U
uni-api
项目概览
DCloud
/
uni-api
通知
670
Star
23
Fork
12
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-api
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
36a07560
编写于
3月 13, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "手动修复内存监控 组件 3.7.6之后编译器新语法"
This reverts commit
492e5909
.
上级
492e5909
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
23 addition
and
29 deletion
+23
-29
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
+23
-29
未找到文件。
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
浏览文件 @
36a07560
import { UTSAndroid } from "io.dcloud.uts"
let listeners
: UTSCallback[] = []
let listeners: UTSCallback[] = []
const onAppTrimMemoryListener = (res
: number) => {
const onAppTrimMemoryListener = (res: number) => {
listeners.forEach(listener => {
listener(res)
})
...
...
@@ -10,13 +10,11 @@ const onAppTrimMemoryListener = (res : number) => {
@Suppress("DEPRECATION")
export function onMemoryWarning(callback
: (res
: number) => void) {
export function onMemoryWarning(callback
: (res
: number) => void) {
if (listeners.length == 0) {
// 仅首次执行底层的实际监听
UTSAndroid.onAppTrimMemory((res : number) => {
onAppTrimMemoryListener(res)
})
UTSAndroid.onAppActivityDestroy(() => {
UTSAndroid.onAppTrimMemory(onAppTrimMemoryListener)
UTSAndroid.onAppActivityDestroy(()=>{
// listeners 默认是静态常量周期,activity 销毁时,需要手动清空
listeners = []
})
...
...
@@ -24,11 +22,10 @@ export function onMemoryWarning(callback : (res : number) => void) {
listeners.push(callback)
}
@Suppress("DEPRECATION")
export function offMemoryWarning(callback
: UTSCallback | null = null) {
export function offMemoryWarning(callback: UTSCallback | null = null) {
if
(callback == null)
{
if
(callback == null)
{
// 清除全部回调
listeners = []
UTSAndroid.offAppTrimMemory(null);
...
...
@@ -42,9 +39,6 @@ export function offMemoryWarning(callback : UTSCallback | null = null) {
}
if (listeners.length == 0) {
// 当用户不再监听时,移除底层实际监听
UTSAndroid.offAppTrimMemory((res : number) => {
onAppTrimMemoryListener(res)
})
UTSAndroid.offAppTrimMemory(onAppTrimMemoryListener)
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录