'Recreate with navigation backstack saving and animation
I want to change app locale -> recreate activity with fade animation and save my navigation backstack and current fragment endpoint.
I tried:
- Starting new activity with CLEAR_TOP flag
setLanguage(appLocale)
val intent = Intent(this@BaseActivity, javaClass)
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
startActivity(intent)
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out)
- With recreate
setLanguage(appLocale)
recreate()
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out)
So what can i do with this ? I just want to have smoothe animation of config change event with saving my navigation backstack (jetpack navigation)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
