gpt4 book ai didi

android - android 蓝牙配件可以强制设备启动应用程序吗?

转载 作者:搜寻专家 更新时间:2023-11-01 09:17:57 27 4
gpt4 key购买 nike

我想知道是否可以开发一种硬件(例如可能通过蓝牙)来在您的设备上启动现有的 Android 应用程序。

我似乎找不到关于此类功能的任何文档。

有没有人遇到过这个?

最佳答案

看起来有 ACTION_DISCOVERY_[STARTED|FINISHED] 方法,您可以为其注册广播接收器。 Link

要注册接收器,请进入项目的 AndroidManifest.xml 并添加接收器标签和一些权限标签:

    <application ...>

<!-- Add your receiver class like so, and declare that you want to listen
for the DISCOVERY_FINISHED action -->
<receiver android:name=".PUT_YOUR_CLASS_NAME_HERE(e.g. BluetoothReceiver)">
<intent-filter>
<action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
</intent-filter>
</receiver>

</application>
<!-- Add the permissions you might need here -->
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

然后您应该能够创建 BluetoothReceiver 类并覆盖 onReceive 方法。

关于android - android 蓝牙配件可以强制设备启动应用程序吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3230169/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com