NJS
11 人关注该话题
如何用NJS获取手机桌面壁纸? uniapp NJS
DCloud_heavensoft 2022-10-11 14:17 回复问题 • 2 人关注 • 2 个回复 • 390 次浏览
以下代码如何转换成NJS? NJS
liyangDXL100 2022-10-11 10:56 发起问题 • 1 人关注 • 0 个回复 • 224 次浏览
请问ios如何跳转到原生ios系统的通讯录添加页面和指定人的系统通讯录编辑页面 NJS
FullStack 2022-08-17 16:36 回复问题 • 4 人关注 • 4 个回复 • 2263 次浏览
IOS中plus.ios.implements实现OC方法后,在OC中回调传值后JS端无法正确获取 Native.JS NJS
元谷 2022-06-02 17:53 回复问题 • 4 人关注 • 3 个回复 • 2326 次浏览
native.js获取文件夹大小 文件 NJS
胖虎777 2022-04-30 12:53 回复问题 • 1 人关注 • 1 个回复 • 392 次浏览
Native.js 如何实现 Objective-C 的 EventHandler? NJS
FullStack 2022-02-23 09:31 回复问题 • 2 人关注 • 1 个回复 • 936 次浏览
IOS 如何调用全局函数 如:UIGraphicsBeginImageContext Native.JS iOS NJS
4***@qq.com 2021-12-06 17:33 回复问题 • 4 人关注 • 2 个回复 • 1637 次浏览
IOS手机如何获取终端MAC地址? Native.JS NJS iOS
l***@chinaunicom.cn 2021-09-02 14:41 发起问题 • 1 人关注 • 0 个回复 • 525 次浏览
wap2app中调用plus.ios.importClass返回的对象全部为null iOS wap2app NJS
物溜 2020-12-22 14:44 发起问题 • 1 人关注 • 0 个回复 • 708 次浏览
njs如何获取键盘高度?ios和android 软键盘 NJS
1***@163.com 2020-04-15 16:50 发起问题 • 1 人关注 • 0 个回复 • 771 次浏览
[20180607已更新] 使用NJS控制Android通知栏,不用个推实现本地消息推送(Local Notification) NJS Native.JS 通知栏 本地消息
5***@qq.com 2020-02-10 00:19 回复问题 • 75 人关注 • 37 个回复 • 33110 次浏览
plus.gallery.pick选择图片的页面全部都是默认的图,不显示图片真正的内容 NJS Native.JS App离线打包
Android_TRY 2020-01-14 11:22 回复问题 • 3 人关注 • 3 个回复 • 1121 次浏览
赞同来自: DCloud_heavensoft 、DIOGO 、Trust
這個問題就自行回答了 :P
HTML5+ API 的推送,請參考 [Push模块管理推送消息功能](http://dcloud.io/docs/api/zh_cn/push.shtml)
Dclo... 显示全部 »
這個問題就自行回答了 :P
HTML5+ API 的推送,請參考 [Push模块管理推送消息功能](http://dcloud.io/docs/api/zh_cn/push.shtml)
Dcloud也集成了個推的功能,請參考 [推送插件配置](http://ask.dcloud.net.cn/docs/#http://ask.dcloud.net.cn/article/92) 、 [推送插件开发指南](http://ask.dcloud.net.cn/docs/#http://ask.dcloud.net.cn/article/34)
而原生的文檔,請參考谷歌的 [Notification](http://developer.android.com/reference/android/app/Notification.html) 、 [Notification.Builder](http://developer.android.com/reference/android/app/Notification.Builder.html) 、[NotificationManager](http://developer.android.com/reference/android/app/NotificationManager.html)
代碼如下,效果比較接近5+ 的Push
```javascript
var NotifyID = 1;
var Context = plus.android.importClass("android.content.Context");
var main = plus.android.runtimeMainActivity();
var Noti = plus.android.importClass("android.app.Notification");
var NotificationManager = plus.android.importClass("android.app.NotificationManager");
var nm = main.getSystemService(Context.NOTIFICATION_SERVICE)
var Notification = plus.android.importClass("android.app.Notification");
var mNotification = new Notification.Builder(main);
mNotification.setOngoing(true);
mNotification.setContentTitle("Hbuilder")
mNotification.setContentText("MUI & 5+ 大好!")
mNotification.setSmallIcon(17301620)
mNotification.setTicker("PadInfo")
mNotification.setNumber(10)
var mNb = mNotification.build()
nm.notify(NotifyID , mNb);
```
實際效果:
** 插入的附件 **
這個可以直接實現本地推送,固定在通知栏。
如果要可以从通知栏刪掉的,請去除掉 mNotification.setOngoing(true) 這行代碼即可
```javascript
var ASIdentifierManager = plus.ios.importClass("ASIdentifierManager");
var sharedManager = ASI... 显示全部 »
```javascript
var ASIdentifierManager = plus.ios.importClass("ASIdentifierManager");
var sharedManager = ASIdentifierManager.sharedManager();
if (sharedManager.isAdvertisingTrackingEnabled()){
var advertisingIdentifier = sharedManager.advertisingIdentifier();
var idfa = plus.ios.invoke(advertisingIdentifier,"UUIDString");
}
```
精华 Native.js示例汇总 NJS Native.JS 示例
z***@163.com2024-11-15 15:16 评论文章 • 165 个评论 • 629314 次浏览
uniapp实现安卓禁止截屏和允许截屏 NJS Native.JS
靐齉齾麤龖龗2024-10-12 13:43 评论文章 • 6 个评论 • 4374 次浏览
通过native.js调用系统分享 - 示例 移动APP Native.JS NJS
1***@qq.com2024-03-27 16:54 评论文章 • 34 个评论 • 40436 次浏览
精华 【分享】一个Notification 进度条插件(android,NJS实现,直接就可使用) NJS 通知栏显示进度 通知栏 通知栏进度条
a***@126.com2023-07-21 14:52 评论文章 • 48 个评论 • 21226 次浏览
关于Android 部分手机NotificationManagerCompat.from 返回null 解决办法 NJS
深井菜鸟2022-12-09 15:52 发表文章 • 0 个评论 • 635 次浏览
精华 贡献native.js(NJS)一些代码,将持续更新 Native.JS NJS
FullStack2022-02-17 09:44 评论文章 • 3 个评论 • 1799 次浏览
安卓获取手机拨打状态和号码 NJS
3***@qq.com2021-11-11 10:25 评论文章 • 3 个评论 • 3026 次浏览
图片添加文字水印-安卓 NJS
s***@qq.com2021-03-03 15:22 评论文章 • 1 个评论 • 1672 次浏览
5+sdk 自定义插件层 混合开发 NJS 5+sdk
普通人62020-06-01 15:41 评论文章 • 1 个评论 • 2406 次浏览