次の方法で共有


ContextWrapper.StartActivity メソッド

定義

オーバーロード

StartActivity(Intent)

オプションが指定されていない StartActivity(Intent, Bundle) と同じです。

StartActivity(Intent, Bundle)

新しいアクティビティを起動します。

StartActivity(Intent)

オプションが指定されていない StartActivity(Intent, Bundle) と同じです。

[Android.Runtime.Register("startActivity", "(Landroid/content/Intent;)V", "GetStartActivity_Landroid_content_Intent_Handler")]
public override void StartActivity (Android.Content.Intent? intent);
[<Android.Runtime.Register("startActivity", "(Landroid/content/Intent;)V", "GetStartActivity_Landroid_content_Intent_Handler")>]
override this.StartActivity : Android.Content.Intent -> unit

パラメーター

intent
Intent

開始するアクティビティの説明。

属性

注釈

このページの一部は、Androidオープンソースプロジェクトによって作成および共有された作業に基づく変更でありCreative Commons 2.5属性ライセンスに記載されている条件に従って使用されます。

適用対象

StartActivity(Intent, Bundle)

新しいアクティビティを起動します。

[Android.Runtime.Register("startActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)V", "GetStartActivity_Landroid_content_Intent_Landroid_os_Bundle_Handler")]
public override void StartActivity (Android.Content.Intent? intent, Android.OS.Bundle? options);
[<Android.Runtime.Register("startActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)V", "GetStartActivity_Landroid_content_Intent_Landroid_os_Bundle_Handler")>]
override this.StartActivity : Android.Content.Intent * Android.OS.Bundle -> unit

パラメーター

intent
Intent

開始するアクティビティの説明。

options
Bundle

アクティビティを開始する方法に関する追加のオプション。 オプションがない場合は null になる可能性があります。 ここで提供されているバンドルをビルドする方法については、 ActivityOptions を参照してください。手動でビルドするためのサポートされている定義はありません。

属性

注釈

このページの一部は、Androidオープンソースプロジェクトによって作成および共有された作業に基づく変更でありCreative Commons 2.5属性ライセンスに記載されている条件に従って使用されます。

適用対象