Activity.StartActivityIfNeeded 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
StartActivityIfNeeded(Intent, Int32) |
與沒有選項的呼叫 |
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)>