Lines Matching refs:fragment
6 It represents a reusable portion of your app's UI. A fragment defines and manages its own layout, h…
7 …wn events. Like Android's Fragment that must be hosted by an activity or another fragment, Fragment
8 in LVGL needs to be hosted by an object, or another fragment. The fragment’s view hierarchy becomes…
15 navigation. You can use fragment manager to build navigation stack, or multi pane application easil…
27 /* States, object references and data fields for this fragment */
36 /* IMPORTANT: size of your fragment struct */
44 /* Create fragment instance, and objects will be added to container */
46 /* Replace current fragment with instance of sample_cls, and init_argument is user defined pointer …
53 /* Add one instance into manager stack. View object of current fragment will be destroyed,
58 /* Remove the top most fragment from the stack, and bring back previous one. */
66 .. include:: ../../examples/others/fragment/index.rst