Modifying the Mobile Workflow Package List Appearance

Change how the Workflow packages are shown on the device.

The comment tag associated with customizing the Workflow package list appearance is ANDROID_CUSTOMIZATION_POINT_HYBRIDAPPLIST.

To show the list of applications, the HybridWebContainer calls the getHybridAppScreenClass() method in CustomizationHelper.java. That method returns the class that displays the list. The default class is UiHybridAppScreen.

This example changes the view from a list view to a gallery view.

  1. To make small changes to the list view, open the UiHybridAppScreen.java file, which is located in the ...\HybridWebContainer\src\com\sybase\hwc folder, and make your changes.
    Note: Optionally, you can create your own class that extends UIHybridAppScreen. If you do this, you must modify the getHybridAppScreenClass() method in CustomizationHelper to return the name of your new class.
  2. Save the file.