android1.6的蓝牙程序
是否有可能使蓝牙程序适用于 android 版本 1.6。我让它适用于 Android version2.1。当我更改项目属性并将构建目标设置为 android 1.6 时,
我收到以下语句错误,因为不支持蓝牙 关于
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
如何使其适用于 android 版本 1.6 有什么想法吗?
Is it possible to make a Bluetooth program work for android version 1.6. I have it working for Android version2.1. when i change the project properties and set the build target to android 1.6 ,
I get error on the following statements as there is no support for bluetooth
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
Any ideas on how to make it work for android version 1.6 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
官方蓝牙 API 仅从 Android 2.0(API 级别 5)起可用 上;这是 97.5% 的 Android 用户。
如果您确实需要在 1.6(API 级别 4)上运行,您也许可以使用 适用于 Android 的实验性非官方蓝牙 API。该项目的作者暗示了如何使其适用于1.x 和 2.x。
The official Bluetooth API is only available from Android 2.0 (API level 5) on; that's 97.5% of Android users.
If you really need to run on 1.6 (API level 4), you might be able to work with the Experimental unofficial Bluetooth API for Android. The author of that project hints at how to make it work for both 1.x and 2.x.