Intent.ParseUri(String, IntentUriType) 方法

定义

从 URI 创建意向。

[Android.Runtime.Register("parseUri", "(Ljava/lang/String;I)Landroid/content/Intent;", "")]
public static Android.Content.Intent? ParseUri (string? uri, Android.Content.IntentUriType flags);
[<Android.Runtime.Register("parseUri", "(Ljava/lang/String;I)Landroid/content/Intent;", "")>]
static member ParseUri : string * Android.Content.IntentUriType -> Android.Content.Intent

参数

uri
String

要转换为意向的 URI。

flags
IntentUriType

其他处理标志。

返回

意向新建的 Intent 对象。

属性

例外

如果 URI 类分析的基本 URI 语法无效或 URI 中的意向数据无效,则引发 URISyntaxError。

注解

从 URI 创建意向。 如果操作、类别和其他意向字段被 #toUri返回,则此 URI 可以对其进行编码。 如果意向不是由 toUri 生成的,则其数据将是整个 URI,其操作将ACTION_VIEW。

此处提供的 URI 不得是相对的 ,也就是说,它必须包含方案和完整路径。

适用于 . 的 android.content.Intent.parseUri(java.lang.String, int)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

另请参阅