arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~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 runing 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_<environment name lowercase>_<os name lowercase>.xml**. If there's no such file, the fallback name is **imagemapping_<environment name lowercase>.xml**. If no imagemapping file was found, nothing will happen. The file should be a standard Java XML properties file like: <file properties> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> <entry key="LOGIN_SMALL">/com/sibvisions/forum/images/ios/login_small.png</entry> <entry key="LOGIN_LARGE">/com/sibvisions/forum/images/ios/login.png</entry> </properties> </file> Above replacement will change default JVx' image mappings, e.g. if your code contains <file java> UIImage.getImage(UIImage.LOGIN_SMALL); </file> It's also possible to use full qualified resource path to change your custom images in your application because not all images were taken from the JVx library: <file xml> <entry key="/com/company/app/images/car.png">/com/company/app/images/ios/car.png</entry> </file> If your code contains <file java> UIImage.getImage(/com/company/app/images/car.png"); </file>