-
Notifications
You must be signed in to change notification settings - Fork 203
Group Basic Usage
qiibeta edited this page Oct 27, 2019
·
6 revisions
val scene = EmptyScene()
add(R.id.scene_container, scene, "TAG")
remove(scene)
hide(scene)
show(scene)
val scene = EmptyScene()
replace(R.id.scene_container, scene, "TAG")
val scene = EmptyScene()
beginTransaction()
add(R.id.scene_container, scene, "TAG")
hide(scene)
commitTransaction()
find Scene instance via tag
findSceneByTag(tag)
find tag via Scene instance
findTagSceneBy(tag)
check whether Scene is added
isAdded(scene)
check whether Scene is visible
isShow(scene)
get child Scene instance list
List<Scene> getSceneList()
- Home
- Background
- Installation
- Basic
- NavigationScene
- GroupScene
- Navigation Animation
- Dialog
- Router
- Style
- State Save
- Architecture-Patterns
- Activity Compatibility
- Migrate Guide
- Benchmark (compare to Activity/Fragment)