android1.6的蓝牙程序

发布于 2024-12-11 17:34:10 字数 315 浏览 0 评论 0原文

是否有可能使蓝牙程序适用于 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 技术交流群。

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

发布评论

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

评论(1

朱染 2024-12-18 17:34:10

官方蓝牙 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.

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