Android-Kotlin-MVVM-Template
Android-Kotlin-MVVM-Template copied to clipboard
[common-ui] Issue with androidx.fragment:fragment-ktx:1.3.0-beta01. Appbar params is not set (title, home icon, color))
When there is a dependency androidx.fragment:fragment-ktx:1.3.0-beta01 ,
BaseActivity.setAppBarTitle(...) calls before initToolbar() by some reason.
super.onCreate(savedInstanceState)
.....
setContentView(layoutId)
initToolbar()
actionBar = supportActionBar
....
}
Without this dependency, everything works fine