Application 에서 표준 모드 로 Activity 를 시작 하 는 오류 의 원인 분석
http://www.milovetingting.cn
Application 에서 표준 모드 로 Activity 를 시작 하 는 오류 의 원인 분석
Android
에서 시 작 된 Activity
은 모두 해당 퀘 스 트 스 택 에서 실 행 됩 니 다.만약 에 Application
에서
로 Activity 를 직접 시작 하면 다음 과 같은 오류 가 발생 합 니 다 (Android 7, Android 8 을 제외 하고 나중에 분석 합 니 다).Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
at android.app.ContextImpl.startActivity(ContextImpl.java:912)
at android.app.ContextImpl.startActivity(ContextImpl.java:888)
at android.content.ContextWrapper.startActivity(ContextWrapper.java:379)
잘못된 정보 알림
FLAG_ACTIVITY_NEW_TASK
플래그 가 필요 합 니 다.Activity 에서 호출
getApplication()
또는 getApplicationContext()
, 최종 적 으로 얻 은 것 은 모두 Application 입 니 다. 그러면 getApplication().startActivity()
또는 getApplicationContext().startActivity()
방법 은 모두 Application 에 있 습 니 다.@Override
public void startActivity(Intent intent) {
mBase.startActivity(intent);
}
애플 리 케 이 션 의 startActivity 방법 에 서 는
mBase
을 통 해 startActivity 를 호출 하고, mBase 는 ContextImpl
이다.ContextImpl 의 startActivity 방법@Override
public void startActivity(Intent intent) {
warnIfCallingFromSystemProcess();
startActivity(intent, null);
}
이 방법 에서 또 다른 과부하 방법 을 호출 하 였 다.
//Android6
@Override
public void startActivity(Intent intent, Bundle options) {
warnIfCallingFromSystemProcess();
if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
throw new AndroidRuntimeException(
"Calling startActivity() from outside of an Activity "
+ " context requires the FLAG_ACTIVITY_NEW_TASK flag."
+ " Is this really what you want?");
}
mMainThread.getInstrumentation().execStartActivity(
getOuterContext(), mMainThread.getApplicationThread(), null,
(Activity) null, intent, -1, options);
}
안 드 로 이 드 6 에 서 는 이 방법 에서 앞 에 던 진 이상 한 힌트 를 보 았 다.여기에 플러스
FLAG_ACTIVITY_NEW_TASK
플래그 가 없 으 면 이상 을 던 질 수 있다 고 판단 했다.안 드 로 이 드 7 의 방법 을 보 겠 습 니 다.
@Override
public void startActivity(Intent intent, Bundle options) {
warnIfCallingFromSystemProcess();
// Calling start activity from outside an activity without FLAG_ACTIVITY_NEW_TASK is
// generally not allowed, except if the caller specifies the task id the activity should
// be launched in.
if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0
&& options != null && ActivityOptions.fromBundle(options).getLaunchTaskId() == -1) {
throw new AndroidRuntimeException(
"Calling startActivity() from outside of an Activity "
+ " context requires the FLAG_ACTIVITY_NEW_TASK flag."
+ " Is this really what you want?");
}
mMainThread.getInstrumentation().execStartActivity(
getOuterContext(), mMainThread.getApplicationThread(), null,
(Activity) null, intent, -1, options);
}
안 드 로 이 드 7 에 서 는 안 드 로 이 드 6 에 비해 이상 을 던 지 려 면 다른 몇 가지 조건 이 필요 하 다 는 것 을 알 수 있다.앞의 Application 의 startActivity 방법 을 보면 Bundle 형식의 options 매개 변 수 는 null 이기 때문에 이 조건 은 성립 되 지 않 고 이상 을 던 지지 않 습 니 다.
안 드 로 이 드 8 의 방법 을 보 겠 습 니 다.
@Override
public void startActivity(Intent intent, Bundle options) {
warnIfCallingFromSystemProcess();
// Calling start activity from outside an activity without FLAG_ACTIVITY_NEW_TASK is
// generally not allowed, except if the caller specifies the task id the activity should
// be launched in.
if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0
&& options != null && ActivityOptions.fromBundle(options).getLaunchTaskId() == -1) {
throw new AndroidRuntimeException(
"Calling startActivity() from outside of an Activity "
+ " context requires the FLAG_ACTIVITY_NEW_TASK flag."
+ " Is this really what you want?");
}
mMainThread.getInstrumentation().execStartActivity(
getOuterContext(), mMainThread.getApplicationThread(), null,
(Activity) null, intent, -1, options);
}
안 드 로 이 드 7 과 마찬가지 로 options 도 판단 했다. options 는 null 이기 때문에 조건 이 성립 되 지 않 고 이상 을 던 지지 않 는 다.
안 드 로 이 드 9 의 방법 을 살 펴 보 겠 습 니 다.
@Override
public void startActivity(Intent intent, Bundle options) {
warnIfCallingFromSystemProcess();
// Calling start activity from outside an activity without FLAG_ACTIVITY_NEW_TASK is
// generally not allowed, except if the caller specifies the task id the activity should
// be launched in. A bug was existed between N and O-MR1 which allowed this to work. We
// maintain this for backwards compatibility.
final int targetSdkVersion = getApplicationInfo().targetSdkVersion;
if ((intent.getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) == 0
&& (targetSdkVersion < Build.VERSION_CODES.N
|| targetSdkVersion >= Build.VERSION_CODES.P)
&& (options == null
|| ActivityOptions.fromBundle(options).getLaunchTaskId() == -1)) {
throw new AndroidRuntimeException(
"Calling startActivity() from outside of an Activity "
+ " context requires the FLAG_ACTIVITY_NEW_TASK flag."
+ " Is this really what you want?");
}
mMainThread.getInstrumentation().execStartActivity(
getOuterContext(), mMainThread.getApplicationThread(), null,
(Activity) null, intent, -1, options);
}
Android 9 에서 options = = null 에 대해 | | 판단 을 사 용 했 습 니 다. 그러면 Activity Options. from Bundle (options). getLaunchTaskId () = = - 1, 조건 이 성립 될 지, 이상 을 던 질 지.
안 드 로 이 드 7 과 안 드 로 이 드 8 에 서 는 FLAG 를 추가 하지 않 고 애플 리 케 이 션 에서 Activity 를 직접 시작 할 수 있 음 을 알 수 있다.ACTIVITY_NEW_TASK 의 플래그.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.