蓝牙设置+android

发布于 2024-12-17 19:56:37 字数 535 浏览 0 评论 0原文

在我的应用程序中,我需要检查设备是否可发现以及蓝牙是否打开或关闭我应用了这样的代码

bluetoothenable=Settings.Secure.getInt(myContext.getContentResolver(),
android.provider.Settings.Secure.BLUETOOTH_ON);

当在设置中我检查了蓝牙打开但可发现时,它给出了真实值 我添加此代码,

bluetooth=Settings.System.getInt(myContext.getContentResolver(),
android.provider.Settings.System.BLUETOOTH_DISCOVERABILITY);

它给我设置未找到异常,不是我检查过的任何值 android.provider.Settings.System 如果我们无法通过读取设置值,它会给出此错误 android.provider.Settings.System

In My Application i Need to check whether the device is discoverable or not and bletooth is on or off I applied the code like this

bluetoothenable=Settings.Secure.getInt(myContext.getContentResolver(),
android.provider.Settings.Secure.BLUETOOTH_ON);

It gives true value when in settings i have checked bluetooth on but for discoverable
i add this code

bluetooth=Settings.System.getInt(myContext.getContentResolver(),
android.provider.Settings.System.BLUETOOTH_DISCOVERABILITY);

it gives me Settings not found exception not this any value i check through
android.provider.Settings.System it gives this error If we can not read settings value through
android.provider.Settings.System?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2024-12-24 19:56:37

您可以设置 BluetoothAdapter。使用此适配器,您可以获得 isEnabled() 和 getScanMode()

You can set up a BluetoothAdapter. With this adapter you can get isEnabled() and getScanMode()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文