0.前言
- Android的Toast相当好用。JavaFX也有几个类似的第三方库
1.安装
<dependency>
<groupId>com.gitee.pomo</groupId>
<artifactId>toasterfx</artifactId>
<version>1.0.2</version>
</dependency>
compile group: 'com.gitee.pomo', name: 'toasterfx', version: '1.0.2'
2.使用
//初始化
toasterService = new ToastBarToasterService();
toasterService.initialize();
toastParameter = ToastParameter.builder()
.timeout(Duration.seconds(2)) //指明消息出现时间。如果永久出现。用Duration.INDEFINITE常量替代即可
.build();
//应用暗黑背景
toasterService.applyDarkTheme();
//弹出
toasterService.bomb(ALERT_TITLE_TEXT,ALERT_HEADER_TEXT + progress + "%", toastParameter, ToastTypes.SUCCESS);
3.外观
ToasterFX外观
4.啰嗦几句
- 作者在项目主页里有一个demo。。其他介绍就很简单了。。。只能多看demo代码。
- 实现效果还是很漂亮的。。。看demo是支持语音的。。
网友评论