接口: IntentOptionsWithRoot
接口: IntentOptionsWithRoot
app.IntentOptionsWithRoot
允许使用 Root 权限的 Intent 选项。Intent 选项用于构建一个 Intent 来启动一个 Activity 或者发送广播等。
有关 Intent 的详细信息,参见Intent。
参见
继承关系
↳
IntentOptionsWithRoot
↳Q Q :𝟲 𝟴𝟭𝟬 𝟽𝟾𝟶𝟴 定制
目录
属性
属性
action
• Optional
action: string
意图的 Action,指意图要完成的动作,是一个字符串常量,比如"android.intent.action.SEND"。当 action 以"android.intent.action"开头时,可以省略前缀,直接用"SEND"代替。参见Actions。
Inherited from
category
• Optional
category: string
| string
[]
意图的类别。比较少用。参见Categories
Inherited from
className
• Optional
className: string
启动 Activity、发送广播的目标组件的类名。
Inherited from
data
• Optional
data: any
意图的 Data,表示和该意图直接相关的数据,是一个 Uri, 可以是文件径或者 Url 等。例如要打开一个文件, action 为"android.intent.action.VIEW", data 为"file:///sdcard/1.txt"。
Inherited from
extras
• Optional
extras: any
以键值对构成的这个 Intent 的 Extras(额外信息)。提供该意图的其他信息,例如发送邮件时的邮件标题、邮件正文。参见Extras。
Inherited from
flags
• Optional
flags: (string
| number
)[]
intent 的额外标识,字符串或 number 数组,例如["activity_new_task", "grant_read_uri_permission"]
。参见Flags。
Inherited from
packageName
• Optional
packageName: string
目标包名。 设置一个显式的应用程序包名,该包名将限制该 Intent 可解析的组件。如果设置为默认值 null,则所有组件都将被视为可解析。如果不为 null,则 Intent 只能解析到给定应用程序包名中的组件。
Inherited from
root
• Optional
root: boolean
是否使用 Root 权限,用于启动 Service、Activity 等。
type
• Optional
type: string
意图的 MimeType,表示和该意图直接相关的数据的类型,表示比如"text/plain"为纯文本类型。