다음을 통해 공유


Activity.StartNextMatchingActivity 메서드

정의

오버로드

StartNextMatchingActivity(Intent)

옵션 없이 호출하는 #startNextMatchingActivity(Intent, Bundle) 것과 같습니다.

StartNextMatchingActivity(Intent, Bundle)

다른 활동 구성 요소를 대체할 때 사용하기 위해 활동을 시작하는 특수 버전입니다.

StartNextMatchingActivity(Intent)

옵션 없이 호출하는 #startNextMatchingActivity(Intent, Bundle) 것과 같습니다.

[Android.Runtime.Register("startNextMatchingActivity", "(Landroid/content/Intent;)Z", "GetStartNextMatchingActivity_Landroid_content_Intent_Handler")]
public virtual bool StartNextMatchingActivity (Android.Content.Intent intent);
[<Android.Runtime.Register("startNextMatchingActivity", "(Landroid/content/Intent;)Z", "GetStartNextMatchingActivity_Landroid_content_Intent_Handler")>]
abstract member StartNextMatchingActivity : Android.Content.Intent -> bool
override this.StartNextMatchingActivity : Android.Content.Intent -> bool

매개 변수

intent
Intent

다음 활동으로 디스패치하려는 의도입니다. 올바른 동작의 경우 이는 사용자 고유의 활동을 시작한 의도와 동일해야 합니다. 변경할 수 있는 유일한 변경 사항은 그 안의 엑스트라에 대한 것입니다.

반환

시작할 다른 활동이 있는지 여부를 나타내는 부울을 반환합니다. 시작할 다음 활동이 있으면 true, 시작하지 않으면 false를 반환합니다. 일반적으로 true가 반환되면 직접 finish()를 호출하려고 합니다.

특성

설명

옵션 없이 호출하는 #startNextMatchingActivity(Intent, Bundle) 것과 같습니다.

에 대한 android.app.Activity.startNextMatchingActivity(android.content.Intent)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

StartNextMatchingActivity(Intent, Bundle)

다른 활동 구성 요소를 대체할 때 사용하기 위해 활동을 시작하는 특수 버전입니다.

[Android.Runtime.Register("startNextMatchingActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)Z", "GetStartNextMatchingActivity_Landroid_content_Intent_Landroid_os_Bundle_Handler")]
public virtual bool StartNextMatchingActivity (Android.Content.Intent intent, Android.OS.Bundle? options);
[<Android.Runtime.Register("startNextMatchingActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)Z", "GetStartNextMatchingActivity_Landroid_content_Intent_Landroid_os_Bundle_Handler")>]
abstract member StartNextMatchingActivity : Android.Content.Intent * Android.OS.Bundle -> bool
override this.StartNextMatchingActivity : Android.Content.Intent * Android.OS.Bundle -> bool

매개 변수

intent
Intent

다음 활동으로 디스패치하려는 의도입니다. 올바른 동작의 경우 이는 사용자 고유의 활동을 시작한 의도와 동일해야 합니다. 변경할 수 있는 유일한 변경 사항은 그 안의 엑스트라에 대한 것입니다.

options
Bundle

활동을 시작하는 방법에 대한 추가 옵션입니다. 자세한 내용은 Context.startActivity(의도, 번들)}를 참조하세요 android.content.Context#startActivity(Intent, Bundle) .

반환

시작할 다른 활동이 있는지 여부를 나타내는 부울을 반환합니다. 시작할 다음 활동이 있으면 true, 시작하지 않으면 false를 반환합니다. 일반적으로 true가 반환되면 직접 finish()를 호출하려고 합니다.

특성

설명

다른 활동 구성 요소를 대체할 때 사용하기 위해 활동을 시작하는 특수 버전입니다. 이를 사용하여 의도를 처리할 수 있는 다음 활동에 전달할 수 있습니다. 일반적으로 .에서 반환#getIntent#onCreate 의도를 사용하여 이 호출을 호출합니다.

에 대한 android.app.Activity.startNextMatchingActivity(android.content.Intent, android.os.Bundle)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상