与蓝牙相关的最重要的两个API
1:BuletoothAdapter
这个类的对象代表了本地的蓝牙适配器,相当于蓝牙工作流程图中的手机里的蓝牙适配器,也就是说比如这个应用程序是运行在手机上,那么手机上的蓝牙适配器就是本地蓝牙适配器。
2:BuletoothDevice
这个类的对象代表了远程的蓝牙设备,相当于蓝牙工作流程图中的计算机里的蓝牙适配器,也就是说比如这个应用程序是运行在手机上,那么BuletoothDevice代表了你要连接的远程的那个设备上面的蓝牙适配器。
注意:蓝牙需要权限: <uses-permission android:name="android.permission.BLUETOOTH" />
//允许程序发现和配对蓝牙设备
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
一、 蓝牙核心代码:
//得到BluetoothAdapter对象
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
//判断BluetoothAdapter对象是否为空,如果为空,则表明本机没有蓝牙设备
if(adapter != null)
{
System.out.println("本机拥有蓝牙设备");
//调用isEnabled()方法判断当前蓝牙设备是否可用
if(!adapter.isEnabled())
{
//如果蓝牙设备不可用的话,创建一个intent对象,该对象用于启动一个Activity,提示用户启动蓝牙适配器
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivity(intent);
}
//得到所有已经配对的蓝牙适配器对象
Set<BluetoothDevice> devices = adapter.getBondedDevices();
if(devices.size()>0)
{
//用迭代
for(Iterator iterator = devices.iterator();iterator.hasNext();)
{
//得到BluetoothDevice对象,也就是说得到配对的蓝牙适配器
BluetoothDevice device = (BluetoothDevice)iterator.next();
//得到远程蓝牙设备的地址
Log.d("mytag",device.getAddress());
}
}
}
****引用一下我转载的一片文章
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
//获取蓝牙适配器
bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
}
@OnClick({R.id.btn_start, R.id.btn_stop, R.id.btn_search, R.id.btn_discoverable})
public void onViewClicked(View view) {
switch (view.getId()) {
case R.id.btn_start:
bluetoothAdapter.enable();
Toast.makeText(MainActivity.this,"蓝牙已打开",Toast.LENGTH_SHORT).show();
break;
case R.id.btn_stop:
bluetoothAdapter.disable();
Toast.makeText(MainActivity.this,"蓝牙已关闭",Toast.LENGTH_SHORT).show();
break;
case R.id.btn_discoverable:
discoverableBluetooth();//打开蓝牙的可检测性
break;
case R.id.btn_search:
searchBluetooh();//搜索蓝牙
break;
}
}
//打开蓝牙的可检测性
private void discoverableBluetooth() {
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
startActivityForResult(intent,0);
Toast.makeText(MainActivity.this,"蓝牙可检测性已打开",Toast.LENGTH_SHORT).show();
}
//搜索蓝牙
private void searchBluetooh() {
//添加蓝牙可以被发现
IntentFilter intentFilter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
MBluetoothBroadCast mBluetoothBroadCast = new MBluetoothBroadCast();//蓝牙过滤器
registerReceiver(mBluetoothBroadCast,intentFilter);
IntentFilter intentFilter1 = new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
registerReceiver(mBluetoothBroadCast,intentFilter1);
//开始找蓝牙设备
bluetoothAdapter.startDiscovery();
}
//符合我注册的过滤器 ,就可以进入onReceive方法
class MBluetoothBroadCast extends BroadcastReceiver{
//一旦被发现或链接,我们就能能收到广播;
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//如果我们搜索到了其他的蓝牙,就会进入这个判断
if( BluetoothDevice.ACTION_FOUND.equals(action)){
//得到搜索到的蓝牙设备
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
if(device.getBondState()!=BluetoothDevice.BOND_BONDED){
//用设备获取蓝牙名字
System.out.println(device.getName()+",,,,,,,,,,,,,,,,");
}
//如果搜索完毕,会进入这个判断;
}else if(BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)){
Toast.makeText(MainActivity.this, "已搜数完成", Toast.LENGTH_LONG).show();
}
}
}