ComponentName.CreateRelative 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateRelative(Context, String) |
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。 |
CreateRelative(String, String) |
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。 |
CreateRelative(Context, String)
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。
[Android.Runtime.Register("createRelative", "(Landroid/content/Context;Ljava/lang/String;)Landroid/content/ComponentName;", "", ApiSince=23)]
public static Android.Content.ComponentName CreateRelative (Android.Content.Context pkg, string cls);
[<Android.Runtime.Register("createRelative", "(Landroid/content/Context;Ljava/lang/String;)Landroid/content/ComponentName;", "", ApiSince=23)>]
static member CreateRelative : Android.Content.Context * string -> Android.Content.ComponentName
参数
- pkg
- Context
实现组件的包的上下文
- cls
- String
实现组件的 var>pkg</var> 中的<类的名称
返回
新的 ComponentName
- 属性
注解
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。
相对包名称以 '.'
字符开头。 对于包 "com.example"
和类名 ".app.MyActivity"
,此方法将返回包含包 "com.example"
和类名 "com.example.app.MyActivity"
的 ComponentName。 还允许完全限定的类名。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
CreateRelative(String, String)
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。
[Android.Runtime.Register("createRelative", "(Ljava/lang/String;Ljava/lang/String;)Landroid/content/ComponentName;", "", ApiSince=23)]
public static Android.Content.ComponentName CreateRelative (string pkg, string cls);
[<Android.Runtime.Register("createRelative", "(Ljava/lang/String;Ljava/lang/String;)Landroid/content/ComponentName;", "", ApiSince=23)>]
static member CreateRelative : string * string -> Android.Content.ComponentName
参数
- pkg
- String
组件所在的包的名称
- cls
- String
实现组件的 var>pkg</var> 中的<类的名称
返回
新的 ComponentName
- 属性
注解
创建一个新的组件标识符,其中类名可以指定为绝对或相对于包含包。
相对包名称以 '.'
字符开头。 对于包 "com.example"
和类名 ".app.MyActivity"
,此方法将返回包含包 "com.example"
和类名 "com.example.app.MyActivity"
的 ComponentName。 还允许完全限定的类名。
适用于 . 的 android.content.ComponentName.createRelative(java.lang.String, java.lang.String)
Java 文档
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。