Set the application splash screen

Set the splash screen for your GWC hybrid mode application for Android

A default splash screen is customizable, allowing you to add a description and change the company logo icon.

Customizing the icon

The icon is referenced in the file $FGLASDIR/ghc/android/res/layout/splash.xml.
<ImageView
  android:layout_height="match_parent"
  android:layout_width="match_parent"
  android:src="@drawable/ic_hybrid_genero_app"
  android:scaleType="center"
  android:id="@+id/company_app_logo"/>

The icon is located in $FGLASDIR/ghc/android/res/drawable-xxxx/

You have two option:
  • Keep the file name "ic_hybrid_genero_app" and replace it with another logo.
  • Add your new icon file in the icon directory and replace the reference in splash.xml (replace ic_hybrid_genero_app with the name of your new file).