我正在尝试将我的 Android 手机广播为蓝牙服务器,为此,我首先想让 Android 成为“可发现的”。
我这样做是使用 ACTION_REQUEST_DISCOVERABLE,如下所示:http: //developer.android.com/guide/topics/wireless/bluetooth.html#EnablingDiscoverability
testIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
startActivity(testIntent);
不幸的是,这也会在手机上弹出一个“蓝牙权限请求”对话框。
有什么方法可以让我的手机“可发现”,而无需提示用户?
谢谢!