Modifying the Hybrid App List Appearance

Change how the Hybrid Apps are shown on the device.

The comment tag associated with customizing the Hybrid App list appearance is ANDROID_CUSTOMIZATION_POINT_HYBRIDAPPLIST.

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

  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 the CustomizationHelper file to return the name of your new class.
  2. Save the file.