Android蓝牙 打开 关闭 与 搜索

Android蓝牙 打开 关闭 与 搜索

1.获取权限

<manifest ... >
  <uses-permission android:name="android.permission.BLUETOOTH" />
    //普通权限,操作蓝牙时需要
  <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    //高级权限,配对等操作时需要
</manifest>

2.打开和关闭蓝牙设备

  • 创建两个按钮,设置两个单击事件

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="打开蓝牙"
    android:onClick="openBlueTooth"/>
<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="关闭蓝牙"
    android:onClick="closeBlueTooth"/>

 public void openBlueTooth(View view){
//      打开蓝牙(提示对话框)
    Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
    discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
    startActivity(discoverableIntent);

//        打开蓝牙(静默,无提示)
//        BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
//        bluetoothAdapter.enable();//需要BLUETOOTH_ADMIN权限

}
public void closeBlueTooth(View view){
//      关闭蓝牙
    BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    bluetoothAdapter.disable();
}

3.搜索蓝牙设备

  • 新建个按钮

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="搜索蓝牙"
    android:onClick="scanBlueTooth"/>
  • 添加方法

public void scanBlueTooth(View view){
    BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    bluetoothAdapter.startDiscovery();

//        返回值是个BluetoothDevice的Set集合
    Set<BluetoothDevice> bluetoothDevices = bluetoothAdapter.getBondedDevices();
    for(BluetoothDevice device : bluetoothDevices){
        System.out.println("Name: " + device.getName());
        System.out.println("Address: " + device.getAddress());
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值