Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 NativeScript 中创建 BroadcastReceiver?
文档讨论了事件,但没有使用 BroadcastrReceiver 的示例。
目前 NativeScript for Android 对广播接收器的支持有限。主要原因是广播接收器可以在任意线程上工作。例如,您可以scheduler在调用registerReceiver方法时指定 a。现在我们正在试验不同的多线程模型,一旦我们做出决定,我们也会为广播接收器提供支持。
scheduler
registerReceiver
话虽如此,您可以使用registerReceiver(尚不支持清单)注册将在主线程上安排的自定义广播接收器。