Tutorial: Generate UI from a data source

In this tutorial you learn how to generate an application UI from data that comes from a data source.

You can use a list data source and a Data-Driven Exclusive Activity Host to create parts of UI with Activities from content of data objects. For example, you can define the content of menus in a data source and use a Data-Driven Exclusive Activity Host to create the menus in your application.

In this tutorial you use a Data-Driven Exclusive Activity Host and a list data source to create a settings panel that shows setting items and each item has its own UI control.

This video shows the result of the tutorial.

../../_images/settingspanel-uicontrols1.gif

This tutorial assumes that you understand the basics of working with the Kanzi Activity system. The best entry points for that are tutorials:

Assets for the tutorial

The starting point of this tutorial is the <KanziWorkspace>/Tutorials/Data-Driven Activities/Start/Tool_project/Data-Driven Activities.kzproj Kanzi Studio project. To learn about the content of this project and how to create such a project, see Tutorial: Control application UI.

You can find the completed tutorial in the <KanziWorkspace>/Tutorials/Data-Driven Activities/Completed directory.

The starting point project contains the assets that you need to complete this tutorial:

  • The SettingsMenuBar image and prefab. You use this image as the interface mockup for the content that a Data-Driven Exclusive Activity Host generates.

    ../../_images/settings-menu-bar.png ../../_images/prefabs-settingsmenubar.png
  • The SettingsLayout prefab. You use this prefab to lay out the content in the Settings menu in the application, and the UI controls to navigate between the Activities that a Data-Driven Exclusive Activity Host generates.

    ../../_images/prefabs-settingslayout.png ../../_images/preview-settingslayout.png
  • These UI controls from the Kanzi Studio Factory Content:

    • Button instantiated in the ControlButton prefab

    • Checkbox instantiated in the ControlCheckbox prefab

    • Slider instantiated in the ControlSlider prefab

    • Toggle Button instantiated in the ControlToggleButton prefab

    You use these UI controls in the Activities that a Data-Driven Exclusive Activity Host generates.

    ../../_images/prefabs-ui-controls.png
  • The fonts that you use in the tutorial.

    ../../_images/library-roboto.png ../../_images/properties-roboto.png
  • The XML_data_source is a Kanzi Engine plugin that provides limited support for using XML as a source of data for your Kanzi application.

    You use this Kanzi Engine data source plugin to get data from an XML data source and use that data with a Data-Driven Exclusive Activity Host to generate Activities.

    To learn more about this plugin and how to define your own data source, see Tutorial: Get application data from a data source.

    ../../_images/library-xmldatasource.png ../../_images/properties-xmldatasource.png
  • The Application/bin/Settings.xml contains the data that describes the content that a Data-Driven Exclusive Activity Host uses to generate Activities.

    <SettingsPanels type="list">
        <items>
            <SettingsPanelItem>
                <PanelName type="string">WINDOWS</PanelName>
                <SettingsItems type="list">
                    <items>
                        <SettingItem>
                            <SettingName type="string">Front left</SettingName>
                            <SettingType type="string">slider</SettingType>
                            <SettingValue type="int">0</SettingValue>
                            <SettingRange type="int">10</SettingRange>
                        </SettingItem>
                        <SettingItem>
                            <SettingName type="string">Front right</SettingName>
                            <SettingType type="string">slider</SettingType>
                            <SettingValue type="int">0</SettingValue>
                            <SettingRange type="int">10</SettingRange>
                        </SettingItem>
                        <SettingItem>
                            <SettingName type="string">Back left</SettingName>
                            <SettingType type="string">slider</SettingType>
                            <SettingValue type="int">0</SettingValue>
                            <SettingRange type="int">10</SettingRange>
                        </SettingItem>
                        <SettingItem>
                            <SettingName type="string">Back right</SettingName>
                            <SettingType type="string">slider</SettingType>
                            <SettingValue type="int">0</SettingValue>
                            <SettingRange type="int">10</SettingRange>
                        </SettingItem>
                    </items>
                </SettingsItems>
            </SettingsPanelItem>
    
          ...
    
       </items>
    </SettingsPanels>
    
  • The resource dictionary of the Screen node contains the alias that points to the Cluster Parallel Activity Host. You use this alias to access that Activity Host.

    ../../_images/dictionaries-cluster-alias.png
  • The Header Activity contains a Toggle Button node that enables you to switch between the Drive and Browse application modes.

    ../../_images/prefabs-mainviewswitcher.png ../../_images/menu-togglebutton.gif

Generate Activities from a data source

In this section you create a template Activity that you then use in a Data-Driven Exclusive Activity Host to generate Activities from an XML data source.

To generate Activities from a data source:

  1. Create a data source with list data objects:

    1. In Kanzi Studio open the <KanziWorkspace>/Tutorials/Data-Driven Activities/Start/Tool_project/Data-Driven Activities.kzproj project.

    2. In the Window main menu select Data Sources.

      Use the Data Sources window to create, set, and delete the data sources in your project, and to connect data objects from a data source to nodes and resources in your project.

      ../../_images/window-data-sources1.png
    3. In the Data Sources window click Create Data Source and create a data source with these settings:

      • Name to Settings

      • Data Source Type to XML_data_source

      ../../_images/create-data-source1.png ../../_images/create-data-source-settings.png
    4. In the Data Sources next to the data source that you just created click quick-edit and set the XML Data Source File property to use the Application/bin/Settings.xml XML file as a data source.

      ../../_images/data-sources-settings.png
    5. In the Data Sources next to the Settings data source click reload-data-source.

      This way you load the data from the Application/bin/Settings.xml file and create data objects. A Data-Driven Exclusive Activity Host uses these data objects to generate Activities.

      ../../_images/data-sources-create.png ../../_images/data-sources-settings-structure.png
  2. Create the template for Activities that a Data-Driven Exclusive Activity Host uses to generate its Activities:

    1. In the Prefabs click create-prefab, select Activity 2D, name it SettingsPanelTemplate, and in that Activity prefab create a Stack Layout 2D node with a Text Block 2D node named PanelName.

      ../../_images/prefabs-settings-panel-template.png
    2. In the Prefabs select SettingsPanelTemplate > Stack Layout 2D > PanelName, and from the Data Sources drag the Settings > SettingsPanels > Item > SettingsPanelItem > PanelName data object to the Properties and drop it on the Text property.

      This way you set the PanelName node to show the name of a settings menu that is set in the PanelName data object. When you drop a data object on a property, Kanzi Studio binds the value of that property type to the value of the data object.

      The PanelName data object gets the value from the Settings.xml file <PanelName> element.

      <SettingsPanels type="list">
          <items>
              <SettingsPanelItem>
                  <PanelName type="string">WINDOWS</PanelName>
                  ...
              </SettingsPanelItem>
              <SettingsPanelItem>
                  <PanelName type="string">MIRRORS</PanelName>
                  ...
              </SettingsPanelItem>
              <SettingsPanelItem>
                  <PanelName type="string">LIGHTS</PanelName>
                  ...
              </SettingsPanelItem>
              <SettingsPanelItem>
                  <PanelName type="string">SEATS</PanelName>
                  ...
              </SettingsPanelItem>
          </items>
      </SettingsPanels>
      
      ../../_images/data-sources-panelname.gif ../../_images/binding-panelname.png
    3. In the Prefabs select SettingsPanelTemplate and in the Properties add and set the Vertical Padding property field Top to 80.

      This way you add padding between the top of the Settings panel and the rest of the application interface.

      ../../_images/prefabs-settings-panel-template.png ../../_images/properties-settingspaneltemplate.png
  3. Create the structure and content for the SettingsPanel:

    1. In the Activity Browser below the GaugeViewActivityHost click add-button, select Create Activity, and name the Activity and its prefab Settings.

      ../../_images/ab-gaugeviewactivityhost-create-activity.png ../../_images/create-activity-settings.png
    2. In the Prefabs drag the SettingsMenuBar node to the Settings Activity.

      ../../_images/prefabs-settingsmenubar.gif
    3. In the Activity Browser in the Settings Activity click activate.

      This way you simulate the activation of the Activity so that you can see it the Preview.

      ../../_images/ab-settings-activated.png ../../_images/preview-settings-initial.png
    4. In the Prefabs select the Settings prefab and in the Properties add and set:

      • Vertical Padding Top to 91

      • Horizontal Alignment to Right

      ../../_images/prefabs-settings.png ../../_images/properties-settings.png ../../_images/preview-settings-positioned.png
  4. Create a Data Trigger that activates the Settings Activity when the Cluster Activity Host is in the Browse mode:

    1. In the Prefabs select the GaugeView > GaugeViewActivityHost.

      ../../_images/prefabs-gaugeviewactivityhost.png
    2. In the Node Components press Alt and right-click Triggers, select Data Trigger, and name it SettingsPanel.

      ../../_images/apply-activation-create-data-trigger.png ../../_images/node-components-settingspanel-dt.png
    3. In the Expression use the expression:

      {#Cluster/Data-DrivenActivities.ActivityProperty.Cluster.MainView} == 1
      

      A condition expression in a Data Trigger must evaluate to either True or False.

      Click Apply.

      This way you set the Data Trigger to keep an Apply Action in that Data Trigger applied for as long as the Data-DrivenActivities.ActivityProperty.Cluster.MainView property is set to Browse (enumeration value 1). You add an Apply Activation Action in the next step. With this binding, the value for the Data-DrivenActivities.ActivityProperty.Cluster.MainView comes from the Cluster Activity Host. You use the Cluster alias that is included in the starting point project and that points to the Cluster Parallel Activity Host.

      ../../_images/node-components-settingspanel-expression.png
    4. In the SettingsPanel trigger press Alt and right-click Actions, select Apply Activation Action, and set Activity Activation Path to Settings.

      The path to the Activity that you set in the Activity Activation Path property is relative to the Activity Host node that you set in the Activity Host Path property.

      The Data Trigger and Apply Activation Action keep this Activity active for as long as the condition in the Data Trigger is met.

      The Activity Browser indicates that an Activity Host has a Data Trigger with the data-trigger icon.

      ../../_images/node-components-settingspanel-apply-activation.png ../../_images/node-components-settingspanel-apply-activation-set.png
  5. Create and set up a Data-Driven Exclusive Activity Host to generate Activities from data that comes from a data source:

    1. In the Activity Browser below the Settings Activity click add-button, select Create Data-Driven Exclusive Activity Host, and name the Data-Driven Exclusive Activity Host SettingsPanel.

      ../../_images/ab-settingspanel.png
    2. In the Prefabs select the Settings prefab, in the Properties add the Data Context > Data Context property and set it to the Settings data source that you created earlier.

      This way you set which data source the SettingsPanel Data-Driven Exclusive Activity Host uses to generate Activities.

      ../../_images/prefabs-settings-settingspanel.png ../../_images/properties-settings-data-context.png
    3. In the Prefabs select the Settings > SettingsPanel, in the Properties click + Add Binding, and in the Binding Editor set:

      • Property to Activity Source

      • Binding Expression to

        {DataContext.SettingsPanels}
        

      Click Save.

      When you bind the Activity Source property to a data object, you tell a Data-Driven Exclusive Activity Host to use the data from that data object to generate Activities.

      ../../_images/binding-editor-settingspanel.png
    4. In the Prefabs select the Settings > SettingsPanel, in the Properties add and set:

      • Activity Template to the SettingsPanelTemplate prefab

        Data-Driven Exclusive Activity Host uses this prefab to create Activities.

      • Active Activity Index to the item in the list data object that you want the Data-Driven Exclusive Activity Host to use to create an Activity when the application activates this Data-Driven Exclusive Activity Host.

        The value of the Active Activity Index property is zero-based and indicates the position in the list data object in a data source that a Data-Driven Exclusive Activity Host uses to create Activities. Value -1 indicates that no Activities in that Data-Driven Exclusive Activity Host are active.

      ../../_images/properties-activity-template.png ../../_images/ab-activity-template.png

In the Activity Browser you can now browse through the Activities generated by the SettingsPanel Data-Driven Exclusive Activity Host:

  1. In the Activity Browser select Cluster and in the side panel set the MainView property to Browse.

    ../../_images/ab-cluster.png ../../_images/ab-mainview-browse.png
  2. In the Activity Browser select the SettingsPanel Data-Driven Exclusive Activity Host and in the side panel set the value of the Active Activity Index property.

    Use the Active Activity Index property to tell a Data-Driven Exclusive Activity Host Node which item in a list data object you want to create. When you set the value of the Active Activity Index property in the Activity Browser, you change the runtime value of this property. When you restart the Preview or your application, the Data-Driven Exclusive Activity Host reads the value of the Active Activity Index property that you set in the Properties.

    ../../_images/ab-activeitemindex.png
../../_images/ddeah-activeitemindex.gif

Create the controls to navigate between Activities

In this section you create the controls to navigate between Activities in the SettingsPanel Data-Driven Exclusive Activity Host.

To create the controls to navigate between Activities:

  1. In the Prefabs drag the Settings > SettingsPanel to the SettingsLayout prefab between the Previous and Next nodes, then drag the SettingsLayout to the Settings Activity.

    ../../_images/settingspanel-to-settingslayout.gif
  2. In Prefabs select the SettingsLayout > Previous Button node, in the Node Components press Alt and right-click Button: Click, and select Dispatch Message Action > Exclusive Activity Host > Navigate to Previous Activity.

    ../../_images/prefabs-settingslayout-previous.png ../../_images/node-components-navigate-to-previous-activity.png
  3. In Node Components in the Navigate to Previous Activity Action set:

    • Target Item to Prefabs/SettingsLayout/SettingsLayout/SettingsPanel

      This way you set in a Navigate to Previous Activity Action in which Data-Driven Exclusive Activity Host you want to go to the previous Activity.

    • Loop Activity to enabled

      This way you set a Navigate to Previous Activity Action to go to the last Activity in a Data-Driven Exclusive Activity Host after it reaches the first Activity in that Activity Host.

    ../../_images/node-components-navigate-to-previous-activity-set.png
  4. Repeat the procedure for the SettingsLayout > Next Button node but create a Navigate to Next Activity Action instead.

    ../../_images/node-components-navigate-to-next-activity.png ../../_images/node-components-navigate-to-next-activity-set.png

In the Activity Browser when you select the Cluster Activity Host and in the side panel set the MainView to Browse, in the Preview you can now use the buttons to navigate between the Activities in the SettingsPanel Data-Driven Exclusive Activity Host.

../../_images/ddeah-controls.gif

Show settings in the SettingsPanel

In this section you show in the SettingsPanel the settings that are defined for each panel in the Settings data source.

To show settings in the SettingsPanel:

  1. In the Prefabs create a Stack Layout 2D prefab named SettingItem and inside it create a Text Block 2D named SettingName.

    You use this prefab to show each SettingItem from the Settings data source.

    ../../_images/prefabs-settingitem.png
  2. In the Prefabs select SettingItem > SettingName, from the Data Sources drag the Settings > SettingsPanels > Item > SettingsPanelItem > SettingsItems > Item > SettingItem > SettingName to the Properties and drop it on the Text property.

    This way you bind the Text property of the SettingName to the SettingName data object in the Settings data source.

    ../../_images/settingname-set.gif ../../_images/properties-settingname-binding.png
  3. In the Prefabs > SettingsPanelTemplate > Stack Layout 2D create a Grid List Box 2D and name it SettingPanelListBox.

    You use this list box to show the settings from the Settings data source using the SettingItem.

    ../../_images/prefabs-settingspanellistbox.png
  4. In the Prefabs select the SettingPanelListBox and set it so that it shows items from the Settings data source:

    • From the Data Sources drag the Settings > SettingsPanels > Item > SettingsPanelItem > SettingsItems data object to the Properties and drop it on the Items Source property.

    • In the Properties add and set:

      • Item Template to SettingItem

        With the Item Template property you set which prefab template you want a Grid List Box node to use for the items in its list.

      • Layout Width to 550

      • Layout Height to 280

      • Cell Width to 550

      • Cell Height to 60

    ../../_images/properties-settingpanellistbox.png
  5. Adjust the presentation of the content in the SettingsPanel Data-Driven Exclusive Activity Host:

    • In the SettingsPanelTemplate > Stack Layout 2D set Direction to Y.

      ../../_images/prefabs-settingspaneltemplate-stack-layout.png ../../_images/properties-settingspaneltemplate-stack-layout.png
    • In the SettingsPanelTemplate > Stack Layout 2D > PanelName add and set:

      • Font Family to Roboto

      • Font Size to 28

      • Horizontal Alignment to Center

      ../../_images/prefabs-settingspaneltemplate-panelname.png ../../_images/properties-settingspaneltemplate-panelname.png
    • In the SettingItem > SettingName add and set:

      • Font Family to Roboto

      • Font Size to 28

      • Font Weight to Light

      • Layout Width to 220

      • Vertical Alignment to Center

      ../../_images/prefabs-settingitem-settingname.png ../../_images/properties-settingitem-settingname.png

In the Activity Browser when you select the Cluster Activity Host and in the side panel set the MainView to Browse, in the Preview you can now see in the SettingsPanel Data-Driven Exclusive Activity Host the settings that are defined for each panel in the Settings data source.

../../_images/settingspanel-w-settingitems.gif

Show a UI control for a setting item

In this section you learn how to show in the SettingsPanel for each setting item a control that is specified for that setting item in the Settings data source.

To show a UI control for a setting item:

  1. In the Library > Property Types create a property type named SettingControlType and set the Data Type to Text.

    You use this property type to set the type of UI control that you want to use for each setting in the SettingsPanel.

    ../../_images/library-settingcontroltype-property.png ../../_images/properties-settingcontroltype.png
  2. Create a state manager that selects the UI control for each setting item in the SettingsPanel:

    1. In the Library > State Managers create a state manager named SettingControlType, rename the State Group to Control, and in the Properties set the Controller Property property to SettingControlType.

      ../../_images/library-settingcontroltype-state-manager.png ../../_images/properties-settingcontroltype-state-manager.png
    2. In the Library > State Managers > SettingControlType > Control create for each control type a state that sets these properties:

      State

      SettingControlType

      Prefab View > Prefab Template

      Button

      button

      ControlButton

      Checkbox

      checkbox

      ControlCheckbox

      Slider

      slider

      ControlSlider

      Toggle Button

      togglebutton

      ControlToggleButton

      You use these states to set the UI control that you want to use for each setting. For the SettingControlType property values you use the same values that the Settings data source uses for each UI control type.

      ../../_images/library-settingcontroltype-state-manager-w-states.png ../../_images/properties-state-button.png ../../_images/properties-state-checkbox.png ../../_images/properties-state-slider.png ../../_images/properties-state-togglebutton.png
  3. In the Prefabs > SettingItem create a Prefab View 2D, name it SettingControl, and in the Properties:

    • Add and set:

      • Resources > State Manager to SettingControlType

      • Layout Width to 300

      • Layout Height to 70

    • Click + Add Binding and in the Binding Editor set:

      • Property to Data-DrivenActivities.SettingControlType

      • Expression to

        {DataContext.SettingItem.SettingType}
        

      Click Save.

      This way the value of the SettingControlType property comes from the SettingType data object. Since the controller property of the SettingControlType state manager is the SettingControlType property, you use this approach to instantiate the prefab of the UI control that the Settings data source contains.

      ../../_images/prefabs-settingcontrol.png ../../_images/properties-settingcontrol.png ../../_images/binding-settingcontroltype.png

In the Activity Browser when you select the Cluster Activity Host and in the side panel set the MainView to Browse, in the Preview you can now see in the SettingsPanel Data-Driven Exclusive Activity Host each setting item with a UI control that is defined in the Settings data source.

../../_images/settingspanel-uicontrols1.gif

Set the UI controls with data source

In this section you set the Checkbox, Slider, and Toggle Button UI controls to get and store their values from the Settings data source. This way the values of UI controls persist when the user navigates to other Activities. The XML_data_source data source that you use in this tutorial stores these values only in the memory.

To set the UI controls with data source:

  1. In the Prefabs select the Checkbox prefab, in the Properties click + Add Binding, and in the Binding Editor set:

    • Binding Mode to Two way

    • Property to Toggle State

    • Expression to

      {DataContext.SettingItem.SettingValue}
      

    Click Save.

    This way the Checkbox gets its state from the SettingValue data object and stores the user-set value to the SettingValue data object of that setting item.

    ../../_images/prefabs-checkbox.png ../../_images/binding-editor-checkbox.png
  2. Repeat the previous step for the Toggle Button prefab.

    Tip

    To copy a binding:

    1. In the Properties right-click the binding that you want to copy and select Copy Binding.

    2. Select the node where you want to use the binding, in the Properties right-click the Bindings property, and select Paste Binding(s).

    ../../_images/prefabs-toggle-button.png ../../_images/binding-editor-toggle-button.png
  3. To set the Slider with data source:

    1. In the Prefabs select the Slider prefab, in the Properties click + Add Binding, and in the Binding Editor set:

      • Property to Maximum Value

      • Expression to

        {DataContext.SettingItem.SettingRange}
        

      Click Save.

      This way the Slider gets its maximum value from the SettingRange data object.

      ../../_images/prefabs-slider.png ../../_images/binding-editor-slider-range.png
    2. In the Properties click + Add Binding and in the Binding Editor set:

      • Binding Mode to Two way

      • Property to Value

      • Expression to

        {DataContext.SettingItem.SettingValue}
        

      Click Save.

      This way the Slider gets its value from the SettingValue data object and stores the user-set value to the SettingValue data object of that setting item.

      ../../_images/binding-editor-slider-value.png

In the Preview when you change the value of a UI control in a setting item and navigate away from that Activity, when you return to that Activity the value for that UI control remains the same.

../../_images/controls-data-source.gif

See also

To learn more about how to use the Activity Browser, see Using the Activity Browser.

To learn more about the Activity system, see Activities.

To learn more about the Data Sources, see Data sources.

To learn more about the Kanzi state manager, see State manager.

To learn more about using bindings, see Using bindings and Bindings expressions reference.