标签:enc appcompat begin class 技术分享 ocs android pre lin
https://www.kotlincn.net/docs/reference/extensions.html
fun AppCompatActivity.replaceFragmentInActivity(fragment: Fragment, @IdRes frameId: Int) {
supportFragmentManager.transact {
replace(frameId, fragment)
}
}
fun AppCompatActivity.addFragmentToActivity(fragment: Fragment, tag: String) {
supportFragmentManager.transact {
add(fragment, tag)
}
}
private inline fun FragmentManager.transact(action: FragmentTransaction.() -> Unit) {
beginTransaction().apply {
action()
}.commit()
}
标签:enc appcompat begin class 技术分享 ocs android pre lin
原文地址:https://www.cnblogs.com/Sir-Lin/p/9353977.html