2024-01-17 08:43:54 +00:00
|
|
|
package com.example.childguard;
|
|
|
|
|
2024-07-11 07:26:04 +00:00
|
|
|
import android.app.Notification;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.app.NotificationChannel;
|
|
|
|
import android.app.NotificationManager;
|
2024-01-18 19:28:17 +00:00
|
|
|
import android.app.PendingIntent;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.app.Service;
|
2024-01-19 00:45:26 +00:00
|
|
|
import android.bluetooth.BluetoothDevice;
|
|
|
|
import android.content.BroadcastReceiver;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2024-01-19 00:45:26 +00:00
|
|
|
import android.content.IntentFilter;
|
2024-01-22 17:57:28 +00:00
|
|
|
import android.content.SharedPreferences;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.content.pm.PackageManager;
|
2024-01-18 20:35:11 +00:00
|
|
|
import android.os.Handler;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.os.IBinder;
|
2024-07-11 05:27:52 +00:00
|
|
|
import android.os.VibrationEffect;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.os.Vibrator;
|
2024-01-19 00:45:26 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.util.Log;
|
2024-01-18 20:35:11 +00:00
|
|
|
|
2024-01-17 08:43:54 +00:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.core.app.ActivityCompat;
|
|
|
|
import androidx.core.app.NotificationCompat;
|
2024-07-11 06:03:13 +00:00
|
|
|
import androidx.core.app.NotificationManagerCompat;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
import com.google.firebase.firestore.DocumentReference;
|
|
|
|
import com.google.firebase.firestore.FirebaseFirestore;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 19:28:17 +00:00
|
|
|
public class TestService extends Service {
|
2024-07-11 06:24:02 +00:00
|
|
|
|
2024-07-11 06:50:13 +00:00
|
|
|
private final Handler handler = new Handler();
|
2024-07-11 06:47:02 +00:00
|
|
|
private Runnable notificationRunnable;
|
|
|
|
|
2024-07-11 06:24:02 +00:00
|
|
|
public static class NotificationContent {
|
|
|
|
private final String title;
|
|
|
|
private final String description;
|
2024-07-11 07:48:29 +00:00
|
|
|
private final String channelId;
|
2024-07-11 07:53:22 +00:00
|
|
|
private final int notificationId;
|
2024-07-11 06:24:02 +00:00
|
|
|
|
2024-07-11 07:53:22 +00:00
|
|
|
public NotificationContent(String title, String description, String channelId, int notificationId) {
|
2024-07-11 06:24:02 +00:00
|
|
|
this.title = title;
|
|
|
|
this.description = description;
|
2024-07-11 07:48:29 +00:00
|
|
|
this.channelId = channelId;
|
2024-07-11 07:53:41 +00:00
|
|
|
this.notificationId = notificationId;
|
2024-07-11 06:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getTitle() {
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return description;
|
|
|
|
}
|
2024-07-11 07:48:29 +00:00
|
|
|
|
|
|
|
public String getChannelId() {
|
|
|
|
return channelId;
|
|
|
|
}
|
2024-07-11 07:53:22 +00:00
|
|
|
|
|
|
|
public int getNotificationId() {
|
|
|
|
return notificationId;
|
|
|
|
}
|
2024-07-11 06:24:02 +00:00
|
|
|
}
|
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
public static final String TAG = "InspirationQuote";
|
2024-07-11 07:48:29 +00:00
|
|
|
private static final String BT_ALERT_CHANNEL_ID = "child_guard_bt_alert";
|
|
|
|
private static final String REPORTED_CHANNEL_ID = "child_guard_reported";
|
2024-07-11 07:26:04 +00:00
|
|
|
private static final String BACKGROUND_CHANNEL_ID = "child_guard_background";
|
2024-07-11 05:51:59 +00:00
|
|
|
private static final int REQUEST_CODE = 100;
|
2024-07-11 07:08:06 +00:00
|
|
|
// private static final int NOTIFICATION_DELAY = 5 * 60 * 1000; // 5 minutes
|
|
|
|
// DEBUG
|
2024-07-11 07:36:33 +00:00
|
|
|
private static final int NOTIFICATION_DELAY = 5 * 1000; // 15 seconds
|
2024-07-11 06:24:02 +00:00
|
|
|
private static final NotificationContent REPORTED_NOTIFICATION =
|
2024-07-11 07:55:11 +00:00
|
|
|
new NotificationContent("子供の置き去りをしていませんか?", "第三者からの通報が行われました。", REPORTED_CHANNEL_ID, 2);
|
2024-07-11 06:24:02 +00:00
|
|
|
private static final NotificationContent BLUETOOTH_NOTIFICATION =
|
2024-07-11 07:55:11 +00:00
|
|
|
new NotificationContent("子供の置き去りをしていませんか?", "Bluetoothと車の切断から5分が経過しました", BT_ALERT_CHANNEL_ID, 3);
|
2024-07-11 05:51:59 +00:00
|
|
|
|
2024-07-11 05:45:42 +00:00
|
|
|
private String userId = null;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
@Override
|
|
|
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
2024-07-11 06:59:50 +00:00
|
|
|
this.userId = getSharedPreferences("app_situation", MODE_PRIVATE).getString("ID", null);
|
2024-07-11 07:00:05 +00:00
|
|
|
if (this.userId == null) {
|
2024-01-18 15:57:33 +00:00
|
|
|
Log.d("onResume", "ID not initialized.");
|
2024-07-11 05:45:42 +00:00
|
|
|
return flags; // IDが初期化されていない場合は何もしない
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
2024-07-11 06:59:50 +00:00
|
|
|
|
2024-07-11 07:26:39 +00:00
|
|
|
if (!isNotificationChannelCreated(BACKGROUND_CHANNEL_ID)) {
|
|
|
|
createRunningNotificationChannel();
|
|
|
|
}
|
2024-07-11 07:26:04 +00:00
|
|
|
Intent notificationIntent = new Intent(this, MainActivity.class);
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_IMMUTABLE);
|
|
|
|
Notification notification = new NotificationCompat.Builder(this, BACKGROUND_CHANNEL_ID)
|
2024-07-11 07:36:21 +00:00
|
|
|
.setContentTitle("ChildGuardバックグラウンドサービス")
|
|
|
|
.setContentText("接続/通報監視サービスがバックグラウンドで実行されています")
|
2024-07-11 07:26:04 +00:00
|
|
|
.setSmallIcon(android.R.drawable.ic_menu_info_details)
|
|
|
|
.setContentIntent(pendingIntent)
|
|
|
|
.build();
|
|
|
|
startForeground(1, notification);
|
|
|
|
|
2024-07-11 06:58:59 +00:00
|
|
|
setSnapshotListener(FirebaseFirestore.getInstance().document("status/" + this.userId));
|
2024-01-22 16:11:21 +00:00
|
|
|
|
2024-07-11 06:12:06 +00:00
|
|
|
if (isNotBluetoothGranted()) return flags;
|
2024-07-11 06:59:50 +00:00
|
|
|
|
2024-07-11 06:12:06 +00:00
|
|
|
registerReceiver(receiver);
|
2024-07-11 07:26:04 +00:00
|
|
|
return START_STICKY;
|
2024-01-17 08:43:54 +00:00
|
|
|
}
|
|
|
|
|
2024-07-11 05:40:34 +00:00
|
|
|
@Override
|
|
|
|
public void onCreate() {
|
|
|
|
super.onCreate();
|
2024-07-11 07:48:29 +00:00
|
|
|
if (!isNotificationChannelCreated(BT_ALERT_CHANNEL_ID)) createAlertNotificationChannel(BT_ALERT_CHANNEL_ID);
|
|
|
|
if (!isNotificationChannelCreated(REPORTED_CHANNEL_ID)) createAlertNotificationChannel(REPORTED_CHANNEL_ID);
|
2024-07-11 05:40:34 +00:00
|
|
|
}
|
|
|
|
|
2024-07-11 05:41:17 +00:00
|
|
|
/**
|
|
|
|
* 通知チャネルが作成されているか確認
|
|
|
|
* @return 通知チャンネルの有無 true: 作成済み false: 未作成
|
|
|
|
*/
|
2024-07-11 07:26:39 +00:00
|
|
|
private boolean isNotificationChannelCreated(String channelId) {
|
2024-07-11 05:40:34 +00:00
|
|
|
NotificationManager notificationManager = getSystemService(NotificationManager.class);
|
2024-07-11 07:26:39 +00:00
|
|
|
return notificationManager.getNotificationChannel(channelId) != null;
|
2024-07-11 05:40:34 +00:00
|
|
|
}
|
|
|
|
|
2024-07-11 05:41:17 +00:00
|
|
|
/**
|
|
|
|
* 通知チャネルの作成
|
|
|
|
*/
|
2024-07-11 07:48:29 +00:00
|
|
|
private void createAlertNotificationChannel(String channelId) {
|
2024-07-11 05:40:34 +00:00
|
|
|
int importance = NotificationManager.IMPORTANCE_DEFAULT;
|
2024-07-11 07:48:29 +00:00
|
|
|
NotificationChannel channel = new NotificationChannel(channelId, "通知", importance);
|
2024-07-11 05:40:34 +00:00
|
|
|
channel.setDescription("第三者により置き去りの通報が行われたときに通知します。");
|
|
|
|
NotificationManager notificationManager = getSystemService(NotificationManager.class);
|
|
|
|
notificationManager.createNotificationChannel(channel);
|
|
|
|
}
|
|
|
|
|
2024-07-11 07:26:04 +00:00
|
|
|
private void createRunningNotificationChannel() {
|
|
|
|
NotificationChannel serviceChannel = new NotificationChannel(
|
2024-07-11 07:29:09 +00:00
|
|
|
BACKGROUND_CHANNEL_ID,
|
2024-07-11 07:26:04 +00:00
|
|
|
"Foreground Service Channel",
|
2024-07-11 07:35:02 +00:00
|
|
|
NotificationManager.IMPORTANCE_NONE
|
2024-07-11 07:26:04 +00:00
|
|
|
);
|
|
|
|
NotificationManager manager = getSystemService(NotificationManager.class);
|
|
|
|
if (manager != null) {
|
|
|
|
manager.createNotificationChannel(serviceChannel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-11 06:03:13 +00:00
|
|
|
/**
|
|
|
|
* 通知が許可がされているかどうかを確認
|
2024-07-11 06:05:56 +00:00
|
|
|
* @return 通知の許可の有無 true: 許可されていない false: 許可されている
|
2024-07-11 06:03:13 +00:00
|
|
|
*/
|
2024-07-11 06:05:46 +00:00
|
|
|
private boolean isNotNotificationEnabled() {
|
2024-07-11 06:03:13 +00:00
|
|
|
NotificationManagerCompat notificationManagerCompat = NotificationManagerCompat.from(this);
|
2024-07-11 06:05:46 +00:00
|
|
|
if (!notificationManagerCompat.areNotificationsEnabled()) {
|
|
|
|
Log.d(TAG, "通知が許可されていません");
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
Log.d(TAG, "通知が許可されています");
|
|
|
|
return false;
|
|
|
|
}
|
2024-07-11 06:03:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-11 06:12:06 +00:00
|
|
|
/**
|
|
|
|
* Bluetoothの権限が許可されているかどうかを確認
|
|
|
|
* @return Bluetoothの権限の有無 true: 許可されていない false: 許可されている
|
|
|
|
*/
|
|
|
|
private boolean isNotBluetoothGranted() {
|
|
|
|
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.BLUETOOTH_CONNECT) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
Log.d(TAG, "Bluetoothの権限が許可されていません");
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
Log.d(TAG, "Bluetoothの権限が許可されています");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ブロードキャストレシーバーを登録
|
|
|
|
* @param receiver ブロードキャストレシーバー
|
|
|
|
*/
|
2024-07-11 07:03:54 +00:00
|
|
|
private void registerReceiver(BroadcastReceiver receiver) {
|
2024-07-11 06:12:06 +00:00
|
|
|
IntentFilter intentFilter = new IntentFilter();
|
|
|
|
intentFilter.addAction(BluetoothDevice.ACTION_ACL_CONNECTED);
|
|
|
|
intentFilter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECTED);
|
|
|
|
|
|
|
|
registerReceiver(receiver, intentFilter);
|
|
|
|
}
|
|
|
|
|
2024-07-11 07:01:52 +00:00
|
|
|
/**
|
|
|
|
* Firestoreのスナップショットリスナーを設定
|
|
|
|
* @param mDocRef Firestoreのドキュメントリファレンス
|
|
|
|
*/
|
2024-07-11 06:56:46 +00:00
|
|
|
private void setSnapshotListener(DocumentReference mDocRef) {
|
2024-07-11 06:55:34 +00:00
|
|
|
// Initialize the PeriodicTaskManager
|
|
|
|
// (Assuming it's done elsewhere as it's not shown in the original code)
|
2024-01-22 17:08:40 +00:00
|
|
|
|
2024-07-11 06:55:34 +00:00
|
|
|
// Prepare SharedPreferences
|
2024-01-18 19:28:17 +00:00
|
|
|
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
|
2024-07-11 06:55:34 +00:00
|
|
|
|
|
|
|
// Add a snapshot listener to the document reference
|
2024-01-19 01:24:05 +00:00
|
|
|
mDocRef.addSnapshotListener((documentSnapshot, e) -> {
|
2024-07-11 06:55:34 +00:00
|
|
|
if (e != null) {
|
|
|
|
Log.w("nt", "Listen failed.", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (documentSnapshot != null && documentSnapshot.exists()) {
|
|
|
|
Log.d("nt", "イベント開始");
|
|
|
|
|
|
|
|
// Handle document snapshot
|
|
|
|
SharedPreferences.Editor editor = sharedPreferences.edit();
|
|
|
|
boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);
|
|
|
|
boolean newIsInCarState = Boolean.TRUE.equals(documentSnapshot.getBoolean("isInCar"));
|
|
|
|
|
|
|
|
editor.putBoolean("isInCarPref", newIsInCarState);
|
|
|
|
editor.apply();
|
2024-01-19 01:24:05 +00:00
|
|
|
|
|
|
|
Log.d("nt", "レスポンスを検知しました1");
|
2024-07-11 06:55:34 +00:00
|
|
|
|
|
|
|
if (isInCar) {
|
|
|
|
if (Boolean.TRUE.equals(documentSnapshot.getBoolean("isReported"))) {
|
|
|
|
resetReported();
|
|
|
|
sendNotification(getApplicationContext(), REPORTED_NOTIFICATION);
|
2024-01-20 05:31:16 +00:00
|
|
|
}
|
2024-07-11 06:55:34 +00:00
|
|
|
} else {
|
|
|
|
resetReported();
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
2024-07-11 06:55:34 +00:00
|
|
|
} else {
|
|
|
|
Log.d("nt", "Current data: null");
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-07-11 07:01:33 +00:00
|
|
|
/**
|
|
|
|
* 通報フラグをリセットする
|
|
|
|
*/
|
2024-07-11 07:03:54 +00:00
|
|
|
private void resetReported() {
|
2024-07-11 07:05:10 +00:00
|
|
|
FirebaseFirestore db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
|
2024-07-11 05:45:42 +00:00
|
|
|
DocumentReference isReported = db.collection("status").document(this.userId);
|
2024-01-19 01:24:05 +00:00
|
|
|
//isReportedをfalseに更新
|
2024-07-11 05:46:12 +00:00
|
|
|
isReported.update("isReported", false).addOnSuccessListener(unused ->
|
|
|
|
Log.d(TAG, "DocumentSnapshot successfully updated!")).addOnFailureListener(e -> Log.w(TAG, "Error updating document", e));
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
2024-01-18 19:28:17 +00:00
|
|
|
|
2024-07-11 06:06:24 +00:00
|
|
|
/**
|
|
|
|
* 通知をタップしたときにアプリを起動するPendingIntentを取得
|
2024-07-11 06:49:02 +00:00
|
|
|
*
|
2024-07-11 06:06:24 +00:00
|
|
|
* @param context コンテキスト
|
|
|
|
* @return PendingIntent
|
|
|
|
*/
|
2024-07-11 06:49:02 +00:00
|
|
|
private PendingIntent getPendingIntent(Context context) {
|
2024-01-18 19:28:17 +00:00
|
|
|
Intent intent = new Intent(context, MainActivity.class);
|
|
|
|
intent.setAction("OPEN_ACTIVITY");
|
2024-07-11 06:49:55 +00:00
|
|
|
return PendingIntent.getActivity(context, TestService.REQUEST_CODE, intent, PendingIntent.FLAG_IMMUTABLE);
|
2024-07-11 05:51:59 +00:00
|
|
|
}
|
|
|
|
|
2024-07-11 06:06:30 +00:00
|
|
|
/**
|
|
|
|
* デバイスをバイブレーションさせる
|
|
|
|
*/
|
2024-07-11 05:53:03 +00:00
|
|
|
private void vibrateDevice() {
|
|
|
|
Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
|
|
|
|
if (vibrator.hasVibrator()) {
|
|
|
|
vibrator.vibrate(VibrationEffect.createOneShot(2000, VibrationEffect.DEFAULT_AMPLITUDE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-11 07:01:02 +00:00
|
|
|
/**
|
|
|
|
* 通知を送信する
|
|
|
|
* @param context コンテキスト
|
|
|
|
* @param content NotificationContent 通知内容
|
|
|
|
*/
|
2024-07-11 07:03:54 +00:00
|
|
|
private void sendNotification(Context context, NotificationContent content) {//通知を行うメソッド
|
2024-07-11 05:25:05 +00:00
|
|
|
// 権限の保有を確認
|
2024-07-11 06:05:46 +00:00
|
|
|
if (isNotNotificationEnabled()) return;
|
2024-07-11 05:25:05 +00:00
|
|
|
|
2024-07-11 05:53:03 +00:00
|
|
|
vibrateDevice();
|
2024-01-18 20:35:11 +00:00
|
|
|
|
2024-07-11 07:48:29 +00:00
|
|
|
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, content.getChannelId())
|
2024-01-18 20:35:11 +00:00
|
|
|
.setSmallIcon(android.R.drawable.ic_menu_info_details)
|
2024-07-11 06:24:02 +00:00
|
|
|
.setContentTitle(content.getTitle())//通知のタイトル
|
|
|
|
.setContentText(content.getDescription())//通知の内容
|
2024-07-11 06:49:02 +00:00
|
|
|
.setContentIntent(getPendingIntent(context))//通知をタップするとActivityへ移動する
|
2024-01-18 20:35:11 +00:00
|
|
|
.setAutoCancel(true)//通知をタップすると削除する
|
|
|
|
.setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定
|
|
|
|
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する
|
|
|
|
|
2024-07-11 05:22:28 +00:00
|
|
|
NotificationManager notificationManager = context.getSystemService(NotificationManager.class);
|
2024-07-11 05:40:34 +00:00
|
|
|
|
2024-07-11 07:53:22 +00:00
|
|
|
notificationManager.notify(content.getNotificationId(), builder.build());
|
2024-01-18 20:35:11 +00:00
|
|
|
}
|
|
|
|
|
2024-01-22 16:11:21 +00:00
|
|
|
private final BroadcastReceiver receiver = new BroadcastReceiver() {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2024-07-11 06:33:51 +00:00
|
|
|
// 処理対象か確認 ----------------------------------------
|
|
|
|
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
|
|
|
|
if (device == null) {
|
|
|
|
Log.d("BT", "No device found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String deviceHardwareAddress = device.getAddress(); // MAC address
|
|
|
|
if (deviceHardwareAddress == null) {
|
|
|
|
Log.d("BT", "No device address found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", null);
|
|
|
|
if (registeredId == null) {
|
|
|
|
Log.d("BT_Judge", "No registered device");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!registeredId.equals(deviceHardwareAddress)) {
|
|
|
|
Log.d("BT_Judge", "Not registered device");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------
|
2024-01-22 16:11:21 +00:00
|
|
|
String action = intent.getAction(); // may need to chain this to a recognizing function
|
2024-07-11 06:47:51 +00:00
|
|
|
boolean isInCar = getSharedPreferences("Bluetooth_situation", MODE_PRIVATE).getBoolean("isInCarPref", false);
|
2024-07-11 06:47:02 +00:00
|
|
|
if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {
|
|
|
|
// bluetoothが切断されたときに乗車状態のとき
|
2024-07-11 06:47:24 +00:00
|
|
|
notificationRunnable = () -> {
|
|
|
|
// 5分経過した時点でも車に乗っていない場合
|
2024-07-11 06:49:42 +00:00
|
|
|
sendNotification(context, BLUETOOTH_NOTIFICATION);
|
2024-07-11 06:47:02 +00:00
|
|
|
};
|
2024-07-11 07:06:07 +00:00
|
|
|
handler.postDelayed(notificationRunnable, NOTIFICATION_DELAY);
|
2024-07-11 06:47:02 +00:00
|
|
|
} else if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
|
|
|
|
// 再接続された場合、通知をキャンセルする
|
|
|
|
if (notificationRunnable != null) {
|
|
|
|
handler.removeCallbacks(notificationRunnable);
|
|
|
|
notificationRunnable = null;
|
|
|
|
Log.d("BT", "Notification canceled due to reconnection");
|
|
|
|
}
|
2024-01-22 16:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-01-17 08:43:54 +00:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public IBinder onBind(Intent intent) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|