readme.md 1.2 KB
Newer Older
1
# uts-progressNotification
2

3
## 使用说明
4 5 6 7 8

Android平台创建显示进度的通知栏消息

**注意: 需要自定义基座,否则点击通知栏消息不会拉起应用**

9 10 11 12 13
### 导入

需要import导入插件

### createNotificationProgress(options : CreateNotificationProgressOptions) : void,
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

创建显示进度的通知栏消息

参数说明

```
export type CreateNotificationProgressOptions = {
	/**
	 * 通知标题
	 * @defaultValue 应用名称
	 */
	title ?: string | null
	/**
	 * 通知内容
	 */
	content : string,
	/**
	 * 进度
	 */
33 34 35 36 37 38
	progress : number,
	/**
	 * 点击通知消息回调
	 * @defaultValue null
	 */
	onClick? : (() => void) | null
39 40 41
}
```

42
### finishNotificationProgress(options: FinishNotificationProgressOptions) : void
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

完成时调用的API,比如下载完成后需要显示下载完成并隐藏进度时调用。

参数说明


```
export type FinishNotificationProgressOptions = {
	/**
	 * 通知标题
	 * @defaultValue 应用名称
	 */
	title ?: string | null
	/**
	 * 通知内容
	 */
	content : string,
	/**
	 * 点击通知消息回调
	 */
63
	onClick : () => void
64 65 66 67 68 69 70 71
}
```


### cancelNotificationProgress() : void

取消通知消息显示