Files
ability_ability_runtime/frameworks/js/napi/ability/ability.js
T
zhangyuhang72 84d95b5f30 OnBackPressed只在TargetAPI>=12时默认返回true
Signed-off-by: zhangyuhang72 <zhangyuhang72@huawei.com>
Change-Id: I57c90794e61d5edfdb9da89c3d0ed02d2698711a
2024-04-03 09:26:38 +08:00

48 lines
1.5 KiB
JavaScript

/*
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
let Callee = requireNapi('application.Callee');
class Ability {
constructor() {
this.callee = new Callee('rpc.application.callee');
console.log('Ability::constructor callee is ' + typeof this.callee + ' ' + this.callee);
}
onCreate(want) { }
onDestroy() { }
onWindowStageCreate(windowStage) { }
onWindowStageDestroy() { }
onForeground(want) { }
onBackground() { }
onPrepareToTerminate() {
return false;
}
onMemoryLevel(level) { }
onWindowStageRestore(windowStage) { }
onCallRequest() {
console.log('Ability::onCallRequest callee is ' + typeof this.callee + ' ' + this.callee);
return this.callee;
}
onContinue(wantParams) { }
onConfigurationUpdated(config) { }
onConfigurationUpdate(newConfig) { }
onNewWant(want, param) { }
dump(params) { }
onDump(params) { }
onSaveState(state, wantParams) { }
onShare(wantParams) { }
}
export default Ability;