~~NOTRANS~~ ~~Title: Using PlatformTheme~~ The PlatformTheme is a special ITheme. It's always active and loads image mappings for the current platform from a mapping (XML) file. This theme could be used to have the same application running on desktop, web, and mobile environments but with different image mappings. The images on mobile devices should, or can, be different to desktop application icons. The PlatformTheme is a built-in mechanism to allow image replacement without writing source code. The search order for the mapping file is as follows: - Use the package of translation parameter, if set (Application.translation) - Use the package of a custom application class, if there is one - Use the package of a custom theme implementation, if set - Use the package of a custom platform Theme implementation, if set If the environment is mobile, the directory should contain a file with the name **imagemapping__.xml**. If there's no such file, the fallback name is **imagemapping_.xml**. If no imagemapping file was found, nothing will happen. The file should be a standard Java XML properties file like: /com/sibvisions/forum/images/ios/login_small.png /com/sibvisions/forum/images/ios/login.png The above replacement will change default JVx' image mappings, e.g., if your code contains UIImage.getImage(UIImage.LOGIN_SMALL); It's also possible to use a full qualified resource path to change your custom images in your application because not all images were taken from the JVx library: /com/company/app/images/ios/car.png If your code contains UIImage.getImage(/com/company/app/images/car.png");