适用于Android 1.6的蓝牙程序

时间:2011-10-24 12:18:58

标签: android bluetooth

是否可以使蓝牙程序适用于Android 1.6版。我有它适用于Android版本2.1。当我更改项目属性并将构建目标设置为android 1.6时,

由于不支持蓝牙,我在以下语句中收到错误

import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;

有关如何使其适用于Android 1.6版的任何想法?

1 个答案:

答案 0 :(得分:1)

官方蓝牙API仅available from Android 2.0 (API level 5)开启;这是Android用户的97.5%

如果您确实需要在1.6(API级别4)上运行,则可以使用Experimental unofficial Bluetooth API for Android。该项目的作者提示how to make it work for both 1.x and 2.x