2021-04-13_Toast的第三方库之Mr-Po/toas

2021-04-12  本文已影响0人  微笑碧落

0.前言

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.啰嗦几句

上一篇下一篇

猜你喜欢

热点阅读