当我点击一个按钮然后它将带我内置的蓝牙设置

问题描述 投票:0回答:1

我试过了,但它只是请求我许可,它会启动蓝牙,但它不能给我内置蓝牙选项的手机?

if (mBluetoothAdapter.isEnabled()) {
    mBluetoothAdapter.disable();
    showDisabled();
} else {
    Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    startActivityForResult(intent, 1000);
}
android android-bluetooth
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.