Activity.StartActivityIfNeeded 方法

定义

重载

StartActivityIfNeeded(Intent, Int32)

与不带选项的调用 #startActivityIfNeeded(Intent, int, Bundle) 相同。

StartActivityIfNeeded(Intent, Int32, Bundle)

仅当需要新活动实例来处理给定意向时,才能启动活动的特殊变体。

StartActivityIfNeeded(Intent, Int32)

与不带选项的调用 #startActivityIfNeeded(Intent, int, Bundle) 相同。

[Android.Runtime.Register("startActivityIfNeeded", "(Landroid/content/Intent;I)Z", "GetStartActivityIfNeeded_Landroid_content_Intent_IHandler")]
public virtual bool StartActivityIfNeeded (Android.Content.Intent intent, int requestCode);
[<Android.Runtime.Register("startActivityIfNeeded", "(Landroid/content/Intent;I)Z", "GetStartActivityIfNeeded_Landroid_content_Intent_IHandler")>]
abstract member StartActivityIfNeeded : Android.Content.Intent * int -> bool
override this.StartActivityIfNeeded : Android.Content.Intent * int -> bool

参数

intent
Intent

要启动的意向。

requestCode
Int32

如果 >= 0,则活动退出时,此代码将在 onActivityResult()中返回,如前 #startActivityForResult所述。

返回

如果启动新活动,则返回 true;否则返回 false,必须自行处理意向。

属性

注解

与不带选项的调用 #startActivityIfNeeded(Intent, int, Bundle) 相同。

适用于 . 的 android.app.Activity.startActivityIfNeeded(android.content.Intent, int)Java 文档

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

另请参阅

  • <xref:Android.App.Activity.StartActivityForResult(Android.Content.Intent%2c+System.Int32)>

适用于

StartActivityIfNeeded(Intent, Int32, Bundle)

仅当需要新活动实例来处理给定意向时,才能启动活动的特殊变体。

[Android.Runtime.Register("startActivityIfNeeded", "(Landroid/content/Intent;ILandroid/os/Bundle;)Z", "GetStartActivityIfNeeded_Landroid_content_Intent_ILandroid_os_Bundle_Handler")]
public virtual bool StartActivityIfNeeded (Android.Content.Intent intent, int requestCode, Android.OS.Bundle? options);
[<Android.Runtime.Register("startActivityIfNeeded", "(Landroid/content/Intent;ILandroid/os/Bundle;)Z", "GetStartActivityIfNeeded_Landroid_content_Intent_ILandroid_os_Bundle_Handler")>]
abstract member StartActivityIfNeeded : Android.Content.Intent * int * Android.OS.Bundle -> bool
override this.StartActivityIfNeeded : Android.Content.Intent * int * Android.OS.Bundle -> bool

参数

intent
Intent

要启动的意向。

requestCode
Int32

如果 >= 0,则活动退出时,此代码将在 onActivityResult()中返回,如前 #startActivityForResult所述。

options
Bundle

有关如何启动活动的其他选项。 有关更多详细信息,请参阅 android.content.Context#startActivity(Intent, Bundle) Context.startActivity(Intent, Bundle)}。

返回

如果启动新活动,则返回 true;否则返回 false,必须自行处理意向。

属性

注解

仅当需要新活动实例来处理给定意向时,才能启动活动的特殊变体。 换句话说,这与以下情况相同 #startActivityForResult(Intent, int) :如果使用 Intent#FLAG_ACTIVITY_SINGLE_TOP 标志或 singleTask 或 singleTop android.R.styleable#AndroidManifestActivity_launchMode launchMode,并且处理 <var>意向</var> 的活动与当前正在运行的活动相同,则不需要新实例。 在这种情况下,调用此函数的 #onNewIntent 正常行为将返回,你可以自行处理意向。

只能从顶级活动调用此函数;如果从子活动调用它,则会引发运行时异常。

适用于 . 的 android.app.Activity.startActivityIfNeeded(android.content.Intent, int, android.os.Bundle)Java 文档

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

另请参阅

  • <xref:Android.App.Activity.StartActivityForResult(Android.Content.Intent%2c+System.Int32)>

适用于