鸿蒙OS开发文档 鸿蒙OS LauncherService.BundleStatusCallback

2024-02-25 开发教程 鸿蒙OS开发文档 匿名 1

LauncherService.BundleStatusCallback

java.lang.Object
|---ohos.bundle.LauncherService.BundleStatusCallback

public abstract static class LauncherService.BundleStatusCallback
extends Object

提供在安装、卸载或更新捆绑包后调用的回调方法。

构造函数摘要

构造函数描述
BundleStatusCallback()

方法总结

修饰符和类型方法描述
abstract voidonBundleAdded(String bundleName, int userId)安装包时调用。
abstract voidonBundleRemoved(String bundleName, int userId)卸载捆绑包时调用。
abstract voidonBundleUpdated(String bundleName, int userId)更新包时调用。
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

构造函数详细信息

BundleStatusCallback

public BundleStatusCallback()

方法详情

onBundleAdded

public abstract void onBundleAdded(String bundleName, int userId)

安装包时调用

参数:

参数名称参数描述
bundleName指示捆绑包名称。
userId表示用户标识。

onBundleUpdated

public abstract void onBundleUpdated(String bundleName, int userId)

更新包时调用。

参数:

参数名称参数描述
bundleName指示捆绑包名称。
userId表示用户标识。

onBundleRemoved

public abstract void onBundleRemoved(String bundleName, int userId)

卸载捆绑包时调用。

参数:

参数名称参数描述
bundleName指示捆绑包名称。
userId表示用户标识。