어플이 두개가 있는데 상황에 따라서 지금 떠있는 어플을 죽이고 다른 어플을 실행을 시켜야됩니다
종료는 했는데 다른 어플을 어떤식으로 실행을 시켜야되나요?
어플을 실행시키는게 아니고, Intent 를 이용해서 Activity 단위로 실행시킬수가 있습니다. 타 어플에서 실행될 수 있도록 하려면, 매니페스트 activity 태그에 android:exported="true" 를 추가하고, 하위의 intent-filter 태그에 <action android:name="android.intent.action.MAIN" /> 추가하셔서, intent 로 호출 할 수 있습니다.
로그인 유지
어플을 실행시키는게 아니고, Intent 를 이용해서 Activity 단위로 실행시킬수가 있습니다. 타 어플에서 실행될 수 있도록 하려면, 매니페스트 activity 태그에 android:exported="true" 를 추가하고, 하위의 intent-filter 태그에 <action android:name="android.intent.action.MAIN" /> 추가하셔서, intent 로 호출 할 수 있습니다.