打开和关闭蓝牙?
是否有一个简单的教程或者有人有代码可以使用 Android 的 Eclipse 构建中的切换按钮打开和关闭蓝牙?
如果有人可以提供帮助,我们将不胜感激。
-提前致谢。
Is there a simple tutorial or dose anyone have code to toggle Bluetooth on and off using a Toggle-button in eclipse building for android?
If anyone can help that will be greatly appreciated.
-Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您需要
在清单文件中添加以下变量:
以便
在 OnCreate 中您可以执行以下操作:
用户对“打开蓝牙”提示的响应被捕获在
You'll need
in your manifest file, and variables like:
and
so that in your OnCreate you can do something like:
where the user response to the "turn bluetooth on" prompt is caught in
看看 http://developer.android.com/reference/android/bluetooth /蓝牙适配器.html
Take a look at http://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html
试试这个
try this
显现:
Manifest:
下载此示例,这将帮助您
https://github.com/siddhpuraamitr/Blutooth-Toggle-Widget< /a>
download this example this will help you
https://github.com/siddhpuraamitr/Blutooth-Toggle-Widget
如果您在 Android 33 中遇到问题,请阅读我,
我今天花了很多时间来解决这个问题,因为这是谷歌搜索的顶部,这里是如何创建一个按钮,要求在 Android 33 中打开/关闭蓝牙。答案是在科特林中
添加一个名为 android:id="@+id/requestBlueToothButton" 的按钮
AndroidManifest.xml 将需要以下行
来源
IF YOU ARE HAVING TROUBLE IN ANDROID 33 READ ME
I spent way to many hours today figuring this out, since this is the top google search here is how to create a button that will ask to turn Bluetooth on/off in android 33. Answer is in Kotlin
add a button to the fragment with the name android:id="@+id/requestBlueToothButton"
AndroidManifest.xml will need the following lines
Source