我目前正在使用 JWrapper 直接使用的 config.xml 文件,并且我有两个要解决的问题。我要做的第一件事是在安装 JWrapper 应用程序时在 SplashScreen 底部添加一个加载动画(作为进度条)。此进度条在卸载应用程序时出现,但在我尝试安装时不显示。我相信 JWrapper 有一个内置的进度条,但我不知道如何启用它。
我要做的第二件事是将我的应用程序的快捷方式放在开始菜单中的特定目录中,该目录与 BundleName 即(公司名称文件夹)不同。就目前而言,它被放置在 MyApp 目录中。这是我的 xml 文件代码的一部分:
<JWrapper>
<!-- The name of the app bundle -->
<BundleName>MyApp</BundleName>
<!-- The specification for one app within the bundle -->
<App>
<Name>MyAppName</Name>
<LogoPNG>resources/iS-icon-128x128.png</LogoPNG>
<MainClass>*hidden*(</MainClass>
<Param>one</Param>
</App>
<SupportedLanguages>en</SupportedLanguages>
<!-- App is a per-user app, it won't elevate and install for all users and
the shared config folder will be per-user -->
<InstallType>CurrentUser</InstallType>
<!-- Splash and Logo -->
<SplashPNG>resources/iS-installer.png</SplashPNG>
<BundleLogoPNG>resources/iS-icon-128x128.png</BundleLogoPNG>
</JWrapper>
这不是文件中的所有内容。我没有找到对我想做的事情有帮助的 JWrapper 文档。有谁知道我如何实现这些功能?