Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
cc5fa837
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看板
提交
cc5fa837
编写于
11月 02, 2022
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
uts-memory plugin basic done.
上级
bf7484bc
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
37 addition
and
15 deletion
+37
-15
uni_modules/uni-memorywarning/package.json
uni_modules/uni-memorywarning/package.json
+2
-1
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
+35
-14
未找到文件。
uni_modules/uni-memorywarning/package.json
浏览文件 @
cc5fa837
...
...
@@ -33,7 +33,8 @@
"uni_modules"
:
{
"uni-ext-api"
:{
"uni"
:
{
"onMemoryWarning"
:
"onMemoryWarning"
"onMemoryWarning"
:
"onMemoryWarning"
,
"offMemoryWarning"
:
"offMemoryWarning"
},
"mp-weixin"
:
false
,
"mp-alipay"
:
false
,
...
...
uni_modules/uni-memorywarning/utssdk/app-android/index.uts
浏览文件 @
cc5fa837
import { onAppTrimMemory
} from "io.dcloud.uts.android";
import { onAppTrimMemory
, offAppTrimMemory ,onAppActivityDestroy} from "io.dcloud.uts.android"
export function onMemoryWarning(callback: (res:Number) => void) {
// console.log("here");
onAppTrimMemory((level:N
umber) => {
console.log(level);
c
allback(level
);
});
// return ;
let listeners: UTSCallback[] = []
const onAppTrimMemoryListener = (res: n
umber) => {
listeners.forEach(listener => {
c
onsole.log("listener " + listener
);
listener(res)
})
}
export function onMemoryWarning(callback: (res: number) => void) {
if (listeners.length === 0) {
// 仅首次执行底层的实际监听
onAppTrimMemory(onAppTrimMemoryListener)
onAppActivityDestroy(()=>{
// listeners 默认是静态常量周期,activity 销毁时,需要手动清空
listeners = []
})
}
listeners.push(callback)
}
export function offMemoryWarning(success: (res: any) => void) {
// TODO 没有实现卸载监听
let ret = {
code:0
export function offMemoryWarning(callback: ((res: number) => void) | null) {
if(callback == null){
// 清除全部回调
listeners = []
return
}
success(ret);
// 清除指定回调
const index = listeners.indexOf(callback)
if (index > -1) {
listeners.splice(index, 1)
}
if (listeners.length === 0) {
// 当用户不再监听时,移除底层实际监听
offAppTrimMemory(onAppTrimMemoryListener)
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录