readme.md 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
# uni-download-notification

## 使用说明  

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

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

### uni.createNotificationProgress(options : CreateNotificationProgressOptions) : void,

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

参数说明

```
export type CreateNotificationProgressOptions = {
	/**
	 * 通知标题
	 * @defaultValue 应用名称
	 */
	title ?: string | null
	/**
	 * 通知内容
	 */
	content : string,
	/**
	 * 进度
	 */
	progress : number
}
```

### uni.finishNotificationProgress(options: FinishNotificationProgressOptions) : void

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

参数说明


```
export type FinishNotificationProgressOptions = {
	/**
	 * 通知标题
	 * @defaultValue 应用名称
	 */
	title ?: string | null
	/**
	 * 通知内容
	 */
	content : string,
	/**
	 * 点击通知消息回调
	 */
	callback : () => void
}
```


### cancelNotificationProgress() : void

取消通知消息显示