源码分享
2704
1
2021-11-27 10:59:35
- function 初始化服务()
- local r = isAccessibilityServiceRun() --无障碍服务是否开启
- if r then
- print("无障碍服务开启了")
- else
- print("无障碍服务没有开启")
- openPermissionSetting()
- end
- end
复制代码- function xx(str,ste)--消息提示
- toast("提示 \n".. str)
- print(str)
- sleep(ste)
- end
复制代码
|
|