응답: 비활성 클래스부터 새 활동 응답: 비활성 클래스부터 새 활동 시작
대답: 비활동 수업부터 새로운 활동 시작
2월 19일 21일.
-1
사용하기 편리하도록 특정 메서드에 대한 메서드를 선택할 수 있습니다.
public class Something
{
public static void navigate(Context context, Class<?> nameOfClass)
{
Intent i = new Intent(context, nameOfClass);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
다른 클래스 및 메서드에서 매번 호출할 수 있습니다.
Something.navigate(activityName.this, classYourWantTONavigateTo.class);
Open Full Answer
Reference
이 문제에 관하여(응답: 비활성 클래스부터 새 활동 응답: 비활성 클래스부터 새 활동 시작), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/johnmelodyme/answer-start-a-new-activity-from-non-activity-class-5068
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
public class Something
{
public static void navigate(Context context, Class<?> nameOfClass)
{
Intent i = new Intent(context, nameOfClass);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
Something.navigate(activityName.this, classYourWantTONavigateTo.class);
Reference
이 문제에 관하여(응답: 비활성 클래스부터 새 활동 응답: 비활성 클래스부터 새 활동 시작), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/johnmelodyme/answer-start-a-new-activity-from-non-activity-class-5068텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)