[Android]蓝牙--打开

作者: 风雨byt | 来源:发表于2016-03-01 11:44 被阅读227次

    方式一:
    <code>Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    startActivityForResult(enableIntent,1);
    </code>
    这种打开蓝牙方式会跳出提示框,为系统提示的部分,影响应用的美感

    方式二:
    需要设置权限
    <code><uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    </code>
    代码
    <code>BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter()
    adapter.enable(打开蓝牙)
    adapter.disable(关闭蓝牙)
    </code>
    方式二是无提示的打开关闭蓝牙

    相关文章

      网友评论

        本文标题:[Android]蓝牙--打开

        本文链接:https://www.haomeiwen.com/subject/misgkttx.html