πππππ ππππ/ANDROID
κ°μ Activityκ° κ³μ μμ± λ λ, μ΄μ μ‘ν°λΉν° μνκ° λ³΄μ¬μ§λ λ¬Έμ (Android Manifest launch mode)
pyorolong
2020. 6. 9. 13:37
android:launchMode [AndroidManifest.xml] Activity μμκ³Ό κ΄λ ¨ν μμ±
- call to its onNewIntent() : always make [new Intent]
- routes the intent : not make new Intent [just routing]
- Multiple Instances
- standard : multiple activities can be started. very first activity state is shown
- singleTop : multiple activities can be started. latest activity state is shown
- Single Instances (not recommended for general use)
- singleTask : just one activity with latest state
- singleInstances :
- Multiple Instances
- standard : μ¬λ¬κ°μ μ‘ν°λΉν°κ° μ€ν λ μ μλ€. κ°μ₯ μ΄μ μνμ μ‘ν°λΉν° μνλ‘ λ³΄μ¬μ§λ€.
- singleTop : μ¬λ¬κ°μ μ‘ν°λΉν°κ° μ€ν λ μ μλ€. κ°μ₯ μ΅μ μνλ‘ λ³΄μ¬μ§λ€.
- Single Instances (not recommended for general use)
- singleTask : μ€νλ μ‘ν°λΉν°λ λ¨ νλμ΄λ©° νμ μ΅μ μ μνλ‘ λ³΄μ¬μ§λ€.
- singleInstances :