Ba-AppWidget 是一款窗口小工具(桌面小部件、微件)插件,默认为音乐播放器的样式,有其他界面需要,可联系作者定制。
在 script
中引入组件
const appWidget = uni.requireNativePlugin('Ba-AppWidget')
在 script
中调用(示例参考,可根据自己业务和调用方法自行修改)
const appWidget = uni.requireNativePlugin('Ba-AppWidget')
export default {
data() {
return {
msgList: [],
textColor1: "#FF0000",
contents: [{
text1: "text11",
text2: "text21",
imgUrl1: "http://www.lihuisem.com/mwj/zb_users/upload/2021/28/1611837327969_1.jpeg"
}, {
text1: "text12",
text2: "text22",
imgUrl1: "http://www.lihuisem.com/mwj/zb_users/upload/2021/28/1611837327969_5.jpeg"
}],
index: 0
}
},
methods: {
init() { //初始化配置,使用默认配置可以不调用
appWidget.init({
isTest: true,//仅用于测试效果
textColor1: this.textColor1,
text1: "text11",
text2: "text21",
imgUrl1: "http://www.lihuisem.com/mwj/zb_users/upload/2021/28/1611837327969_1.jpeg"
},
res => {
console.log(res);
uni.showToast({
title: res.msg,
icon: "none",
duration: 3000
})
});
},
requestPin() { //添加到桌面,也可以通过桌面的方式添加
let that = this;
appWidget.requestPin(
res => {
console.log(res);
that.msgList.unshift(JSON.stringify(res))
uni.showToast({
title: res.msg,
icon: "none",
duration: 3000
})
});
},
subClick() { //监听点击事件
let that = this;
appWidget.subClick(
res => {
console.log(res);
if (res.data) {
if(res.data.id){//根据id判断点击的事哪个按钮
}
that.updateAW();//更新页面内容
that.msgList.unshift(JSON.stringify(res))
}
uni.showToast({
title: res.msg,
icon: "none",
duration: 3000
})
});
},
updateAW() {//更新内容
let that = this;
if (this.index == 0) {
this.index = 1;
} else {
this.index = 0;
}
let content = this.contents[this.index];
appWidget.updateAW(content,
res => {
console.log(res);
if (res.data) {
that.msgList.unshift(JSON.stringify(res))
}
uni.showToast({
title: res.msg,
icon: "none",
duration: 3000
})
});
},
}
}
方法名 | 说明 |
---|---|
init | 初始化配置,使用默认配置可以不调用 |
requestPin | 添加小工具到桌面 |
subClick | 监听小工具的点击事件 |
updateAW | 更新小工具的内容 |
初始化配置,使用默认配置可以不调用
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
text1 | String | false | ‘’ | 文本1的内容 |
text2 | String | false | ‘’ | 文本2的内容 |
textColor1 | String | false | ‘#181818’ | 文本1颜色 |
textColor2 | String | false | ‘#666866’ | 文本2颜色 |
textSize1 | Number | false | 14 | 文本1的字体大小,单位dp |
textSize2 | Number | false | 12 | 文本2的字体大小,单位dp |
btnIcon1 | String | false | ‘’ | 按钮1的图标,原生配置地址,见原生图标配置说明 |
btnIcon2 | String | false | ‘’ | 按钮2的图标,同上 |
btnIcon3 | String | false | ‘’ | 按钮3的图标,同上 |
btnIcon4 | String | false | ‘’ | 按钮4的图标,同上 |
btnIcon5 | String | false | ‘’ | 按钮5的图标,同上 |
imgUrl1 | String | false | ‘’ | 图片1,网络地址 |
更新小工具的内容
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
text1 | String | false | ‘’ | 文本1的内容 |
text2 | String | false | ‘’ | 文本2的内容 |
textColor1 | String | false | ‘#181818’ | 文本1颜色 |
textColor2 | String | false | ‘#666866’ | 文本2颜色 |
textSize1 | Number | false | 14 | 文本1的字体大小,单位dp |
textSize2 | Number | false | 12 | 文本2的字体大小,单位dp |
btnIcon1 | String | false | ‘’ | 按钮1的图标,原生配置地址,见原生图标配置说明 |
btnIcon2 | String | false | ‘’ | 按钮2的图标,同上 |
btnIcon3 | String | false | ‘’ | 按钮3的图标,同上 |
btnIcon4 | String | false | ‘’ | 按钮4的图标,同上 |
btnIcon5 | String | false | ‘’ | 按钮5的图标,同上 |
imgUrl1 | String | false | ‘’ | 图片1,网络地址 |
注意:配置更改后,需要重新制作基座才生效,建议提前配置。
图片选择插件 Ba-MediaPicker (文档)
图片编辑插件 Ba-ImageEditor (文档)
文件选择插件 Ba-FilePicker (文档)
应用消息通知插件(多种样式,新增支持常驻通知模式) Ba-Notify(文档)
应用未读角标插件 Ba-Shortcut-Badge (文档)
应用开机自启插件 Ba-Autoboot(文档)
扫码原生插件(毫秒级、支持多码)Ba-Scanner-G(文档)
扫码原生插件 - 新(可任意自定义界面版本;支持连续扫码;支持设置扫码格式)Ba-Scanner(文档)
动态修改状态栏、导航栏背景色、字体颜色插件 Ba-AppBar(文档)
原生sqlite本地数据库管理 Ba-Sqlite(文档)
安卓保活插件(采用多种主流技术) Ba-KeepAlive(文档)
安卓快捷方式(桌面长按app图标) Ba-Shortcut(文档)
自定义图片水印(任意位置) Ba-Watermark(文档)
最接近微信的图片压缩插件 Ba-ImageCompressor(文档)
视频压缩、视频剪辑插件 Ba-VideoCompressor(文档)
动态切换应用图标、名称(如新年、国庆等) Ba-ChangeIcon(文档)
原生Toast弹窗提示(穿透所有界面、穿透原生;自定义颜色、图标 ) Ba-Toast(文档)
图片涂鸦、画笔 Ba-ImagePaint(文档)
pdf阅读(手势缩放、显示页数) Ba-Pdf(文档)
声音提示、震动提示、语音播报 Ba-Beep(文档)
websocket原生服务(自动重连、心跳检测) Ba-Websocket(文档)
短信监听(验证码) Ba-Sms(文档)
智能安装(自动升级) Ba-SmartUpgrade(文档)
监听系统广播、自定义广播 Ba-Broadcast(文档)
监听通知栏消息(支持白名单、黑名单、过滤) Ba-NotifyListener(文档)
全局置灰、哀悼置灰(可动态、同时支持nvue、vue) Ba-Gray(文档)
获取设备唯一标识(OAID、AAID、IMEI等) Ba-IdCode(文档)
实时定位(系统、后台运行、支持息屏)插件 Ba-Location(文档)