共用方式為


Intent.ParseIntent(Resources, XmlReader, IAttributeSet) 方法

定義

從 XML 剖析 「intent」 元素(及其子系),並具現化 Intent 物件。

[Android.Runtime.Register("parseIntent", "(Landroid/content/res/Resources;Lorg/xmlpull/v1/XmlPullParser;Landroid/util/AttributeSet;)Landroid/content/Intent;", "")]
public static Android.Content.Intent ParseIntent (Android.Content.Res.Resources resources, System.Xml.XmlReader parser, Android.Util.IAttributeSet? attrs);
[<Android.Runtime.Register("parseIntent", "(Landroid/content/res/Resources;Lorg/xmlpull/v1/XmlPullParser;Landroid/util/AttributeSet;)Landroid/content/Intent;", "")>]
static member ParseIntent : Android.Content.Res.Resources * System.Xml.XmlReader * Android.Util.IAttributeSet -> Android.Content.Intent

參數

resources
Resources

擴充資源時要使用的資源。

parser
XmlReader

指向「意圖」標記的 XML 剖析器。

attrs
IAttributeSet

在目前 <var>剖析器</var> 位置擷取擴充屬性數據的 AttributeSet 介面。

傳回

符合 XML 數據的 Intent 物件。

屬性

例外狀況

如果有 XML 剖析錯誤。

如果有 I/O 錯誤。

備註

從 XML 剖析 「intent」 元素(及其子系),並具現化 Intent 物件。 指定的 XML 剖析器應該位於剖析應該開始的標記上(通常命名為 “intent”),從中擷取基本動作、數據、類型和封裝和類別名稱。 函式接著會剖析至任何子元素,尋找 <類別 android:name=“xxx”> 卷標,以新增類別和 <額外的 android:name=“xxx” android:value=“yyy”> 以附加額外的數據至意圖。

android.content.Intent.parseIntent(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於