gpt4 book ai didi

android - 检测蓝牙连接(android sdk ICS)

转载 作者:行者123 更新时间:2023-11-29 18:12:10 25 4
gpt4 key购买 nike

我想构建一个小应用程序来识别任何蓝牙耳机连接和断开连接并将其写入日志文件。

我尝试使用 android SDK example用于检测蓝牙连接,但无法正常工作。当我的应用程序正在加载时,我收到了对 OnServiceConnected 的调用,仅此而已。当我通过蓝牙耳机连接和断开连接时,没有其他调用 OnServiceConnected 或 OnServiceDisconnected(我累了不止一个)。

我在 OnCreate 函数中编写了所有代码。

也许问题出在 android 4 上?还是其他什么?

// Get the default adapter
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

// Establish connection to the proxy.
mBluetoothAdapter.getProfileProxy(this.getApplicationContext(), mProfileListener, BluetoothProfile.HEADSET);

private BluetoothProfile.ServiceListener mProfileListener = new BluetoothProfile.ServiceListener() {
public void onServiceConnected(int profile, BluetoothProfile proxy) {
// Write to log - OnServiceConnected
}
public void onServiceDisconnected(int profile) {
// Write to log - OnServiceDisconnected
}
};

最佳答案

好的,找到了。

这是它:

getApplicationContext().registerReceiver(receiver,
new IntentFilter(BluetoothDevice.ACTION_ACL_CONNECTED));
getApplicationContext().registerReceiver(receiver,
new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECTED));

private final BroadcastReceiver mReceiver = new BroadcastReceiver()
{
@Override
public void onReceive(Context context, Intent intent)
{
if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action))
{
// LOG - Connected
}
else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action))
{
// LOG - Disconnected
}
}
}

关于android - 检测蓝牙连接(android sdk ICS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10078051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com