鸿蒙OS ShortcutIntent
ShortcutIntent
java.lang.Object
|---ohos.bundle.ShortcutIntent
public class ShortcutIntent
extends Object
implements Sequenceable
提供用于获取有关快捷方式将启动的ability信息的方法,包括目标捆绑包名称和ability类名称。
嵌套类摘要
从接口 ohos.utils.Sequenceable 继承的嵌套类/接口 |
---|
Sequenceable.ProducerT |
字段摘要
修饰符和类型 | 字段 | 描述 |
---|---|---|
static Sequenceable.ProducerShortcutIntent | PRODUCER | 从 Parcel 创建一个 ShortcutIntent 实例。 |
构造函数摘要
构造函数 | 描述 |
---|---|
ShortcutIntent() | 用于创建 ShortcutIntent 实例的默认构造函数。 |
ShortcutIntent(String targetBundle, String targetClass) | 用于通过目标包和类创建 ShortcutIntent 实例的构造函数。 |
ShortcutIntent(ShortcutIntent source) | 用于通过从现有参数复制参数来创建 ShortcutIntent 实例的构造函数。 |
方法总结
修饰符和类型 | Method | Description |
---|---|---|
void | addParam(String key, String value) | 添加键值对格式的参数。 |
MapString,String | getParams() | 获取键值参数。 |
String | getTargetBundle() | 获取此快捷方式的目标ability所属的捆绑包的名称。 |
String | getTargetClass() | 获取目标ability的类名。 |
boolean | marshalling(Parcel out) | 将此 Sequenceable 对象编组为 Parcel。 |
void | setTargetBundle(String targetBundle) | 设置此快捷方式的目标ability所属的捆绑包的名称。 |
void | setTargetClass(String targetClass) | 设置目标ability的类名。 |
boolean | unmarshalling(Parcel in) | 从 Parcel 中解组此 Sequenceable 对象。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
从接口 ohos.utils.Sequenceable 继承的方法 |
---|
hasFileDescriptor |
字段详细信息
PRODUCER
public static final Sequenceable.ProducerShortcutIntent PRODUCER
从 Parcel 创建一个 ShortcutIntent 实例。
构造函数详细信息
ShortcutIntent
public ShortcutIntent()
用于创建 ShortcutIntent 实例的默认构造函数。
ShortcutIntent
public ShortcutIntent(ShortcutIntent source)
用于通过从现有参数复制参数来创建 ShortcutIntent 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
source | 指示 ShortcutIntent 对象。 |
ShortcutIntent
public ShortcutIntent(String targetBundle, String targetClass)
用于通过目标包和类创建 ShortcutIntent 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
targetBundle | 指示捆绑包名称。 |
targetClass | 表示类名。 |
方法详情
setTargetBundle
public void setTargetBundle(String targetBundle)
设置此快捷方式的目标ability所属的捆绑包的名称。
参数:
参数名称 | 参数描述 |
---|---|
targetBundle | 指示捆绑包名称。 |
getTargetBundle
public String getTargetBundle()
获取此快捷方式的目标ability所属的捆绑包的名称。
返回:
返回捆绑包名称。
setTargetClass
public void setTargetClass(String targetClass)
设置目标ability的类名。
参数:
参数名称 | 参数描述 |
---|---|
targetClass | 表示类名。 |
getTargetClass
public String getTargetClass()
获取目标ability的类名。
返回:
返回目标ability的类名。
getParams
public MapString,String getParams()
获取键值参数。
返回:
返回参数。
addParam
public void addParam(String key, String value)
添加键值对格式的参数。
参数:
参数名称 | 参数描述 |
---|---|
key | Indicates the key matching the parameter. |
value | Indicates the value of the parameter. |
marshalling
public boolean marshalling(Parcel out)
从接口复制的描述:Sequenceable
将此 Sequenceable 对象编组为 Parcel。
指定者:
接口 Sequenceable 中的编组
参数:
参数名称 | 参数描述 |
---|---|
out | 指示将 Sequenceable 对象编组到的 Parcel 对象。 |
返回:
如果编组成功,则返回 true; 否则返回 false。
unmarshalling
public boolean unmarshalling(Parcel in)
从接口复制的描述:Sequenceable
从 Parcel 中解组此 Sequenceable 对象。
指定者:
在接口 Sequenceable 中解组
参数:
参数名称 | 参数描述 |
---|---|
in | 指示已将 Sequenceable 对象编组到的 Parcel 对象。 |
返回:
如果解组成功,则返回 true; 否则返回 false。