The application screen should appear with the load
event. The expected difference between "Loaded"
and "Focused"
logs should be miniscule, but the demo uses 10 big, slow-loading, asynchronous scripts, which introduces significant delay for the load
event.
Together with "First paint B", this demo emphasizes the difference between first-paint
and complete
.
To get this behavior in your application, inside top-level <widget>
element, at minimum add
<tizen:video_splash_screen ready_when="complete">
<tizen:vss_default
video="path-to-splash.mp4"
background_image="path-to-background.png"
background_color="#abcdef"
image="path-to-splash.png"
image_border="0px stretch" />
</tizen:video_splash_screen>
To see, how to prepare a package with this widget, see Using the examples and use the 02B-complete-defer/widget
directory.