gpt4 book ai didi

java - Android - 检查蓝牙连接是否丢失?

转载 作者:行者123 更新时间:2023-12-02 03:44:00 25 4
gpt4 key购买 nike

我正在编写一个连接到 Arduino 蓝牙设备的应用程序。目标是让 Android 用户在手机离开 Arduino 的范围时收到推送通知。无论应用程序是否位于前台,都应该发生这种情况。为此,我目前在 Android list 中使用 BroadcastReceiver。但是,我没有收到任何此类通知。

这是实现BroadcastReceiver的Receiver类:

public class Receiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
String action = intent.getAction();
if (action.equals(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED)) {
if (adapter.getState() == BluetoothAdapter.STATE_OFF) {
pushNotification(context);
}
}
}

public void pushNotification(Context context) {

NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
builder.setSmallIcon(R.mipmap.ic_launcher);

builder.setAutoCancel(true);

builder.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher));

builder.setContentTitle("This is a notification!");
builder.setContentText("This is the notification text!");
builder.setSubText("This is the notification subtext!");

NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
notificationManager.notify(1, builder.build());
}
}

以及 AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".Receiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
</intent-filter>
</receiver>
</application>

</manifest>

我相当确定问题出在我在逻辑中使用的常量。但是,我不确定应该使用哪些。事实上,当 Android 蓝牙发生任何状态更改时,接收器就会被激活,但我只想在连接丢失时收到通知,这可能与 Android 蓝牙接收器的状态更改没有任何关系。我应该怎么做才能确保在这些条件下调用pushNotification()?

最佳答案

您登记了错误的 Intent 。

<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />

此 Intent 仅指示蓝牙是否打开和关闭。如果您想接收蓝牙设备连接状态,您应该使用以下操作:

<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
<action android:name="android.bluetooth.device.action.ACL_CONNECTED" />

在你的 onRecive 方法中:

if(TextUtils.equals(action,BluetoothDevice.ACTION_ACL_DISCONNECTED)) {
BluetoothDevice device = intent.getExtras()
.getParcelable(BluetoothDevice.EXTRA_DEVICE);
if (isYourDevice(device)) {
// to push your notification
}
}

关于java - Android - 检查蓝牙连接是否丢失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36514212/

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