目前我正在从插件加载我的工具的启动画面图像。是否可以从外部插件[从其他硬盘路径]加载启动画面图像?我的要求是给用户一个选项来改变来自我产品本身的闪屏图像。如果可能,请向我简要介绍一个例子。 在此先感谢!
答案 0 :(得分:1)
尝试使用以下线程创建自定义启动画面,例如:Eclipse RCP application - custom splash screen。
使用以下扩展点注册您的SplashHandler:
<extension point="org.eclipse.ui.splashHandlers">
<splashHandler
class="com.example.application.splash.SlideShowSplashHandler"
id="splash.slideshow">
</splashHandler>
<splashHandlerProductBinding
productId="com.example.application.product"
splashId="com.example.application.splash.slideshow">
</splashHandlerProductBinding>
</extension>
在Splash处理程序中创建带有图像的复合,该图像取自用户定义的位置。