07 手机性能模块 - MiEcosystem/miot-plugin-sdk GitHub Wiki
手机的性能:内存不足警告
Export: public
Doc_name: 手机性能模块
Doc_index: 7
Doc_directory: system
Example
import {MemoryWarningEvent} from "miot"
...
MemoryWarningEvent.onMemoryWarning.addListener(//listener)
...
应用内存不足时的通知
Kind: static constant of miot/system
Returns: number
- level 内存告警等级,只有 Android 才有,对应系统宏定义,包括:
5:TRIM_MEMORY_RUNNING_MODERATE;
10:TRIM_MEMORY_RUNNING_LOW;
15:TRIM_MEMORY_RUNNING_CRITICAL。
详见:https://developer.android.com/reference/android/content/ComponentCallbacks2
Since: 10043
Example
MemoryWarningEvent.onMemoryWarning.addListener(this.myListener);