From 4f01f96bbc13a449f11db4cff109cd88cd656e86 Mon Sep 17 00:00:00 2001 From: Asura146 Date: Mon, 5 Aug 2024 02:33:27 +0900 Subject: [PATCH] =?UTF-8?q?Bluetooth=E3=81=AE=E5=88=A4=E5=AE=9A=E5=87=A6?= =?UTF-8?q?=E7=90=86=E3=81=8C=E6=AD=A3=E3=81=97=E3=81=8F=E8=A1=8C=E3=82=8F?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E3=83=90=E3=82=B0?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=20=E3=81=A4=E3=81=84=E3=81=A7?= =?UTF-8?q?=E3=81=AB=E3=80=81MainActivity=E3=81=AE=E6=8E=83=E9=99=A4?= =?UTF-8?q?=E3=82=82=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/childguard/MainActivity.java | 124 +++++++----------- 1 file changed, 49 insertions(+), 75 deletions(-) diff --git a/app/src/main/java/com/example/childguard/MainActivity.java b/app/src/main/java/com/example/childguard/MainActivity.java index c60deed..c33344f 100644 --- a/app/src/main/java/com/example/childguard/MainActivity.java +++ b/app/src/main/java/com/example/childguard/MainActivity.java @@ -339,60 +339,52 @@ public class MainActivity extends AppCompatActivity { notificationManager.notify(R.string.app_name, builder.build());//通知の表示 } - - @Override - public void onStop() {//アプリをバックグラウンドにした時のメソッド - super.onStop(); -// Intent intent = new Intent(getApplication(), TestService.class); -// startService(intent);//TestServiceを起動 - } - - public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド - final String CHANNEL_ID = "my_channel_id"; - // 通知がクリックされたときに送信されるIntent - Intent intent = new Intent(context, MainActivity.class); - intent.setAction("OPEN_ACTIVITY"); - // PendingIntentの作成 - int requestCode = 100; - int flags = 0; - PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE); - - ((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション - - @SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID") - .setSmallIcon(android.R.drawable.ic_menu_info_details) - .setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル - .setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文 - .setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する - .setAutoCancel(true)//通知をタップすると削除する - .setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定 - .setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する - - // NotificationChannelの作成(Android 8.0以降) - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { - NotificationManager notificationManager = context.getSystemService(NotificationManager.class); - if (notificationManager != null) { - NotificationChannel channel = new NotificationChannel( - CHANNEL_ID, - "Channel Name", - NotificationManager.IMPORTANCE_HIGH - ); - - channel.setDescription("Channel Description"); - channel.enableLights(true); - channel.setLightColor(Color.RED); - channel.enableVibration(true); - notificationManager.createNotificationChannel(channel); - } - } - - - NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE); - if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { - return; - } - notificationManager.notify(R.string.app_name, builder.build());//通知の表示 - } +// public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド +// final String CHANNEL_ID = "my_channel_id"; +// // 通知がクリックされたときに送信されるIntent +// Intent intent = new Intent(context, MainActivity.class); +// intent.setAction("OPEN_ACTIVITY"); +// // PendingIntentの作成 +// int requestCode = 100; +// int flags = 0; +// PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE); +// +// ((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション +// +// @SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID") +// .setSmallIcon(android.R.drawable.ic_menu_info_details) +// .setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル +// .setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文 +// .setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する +// .setAutoCancel(true)//通知をタップすると削除する +// .setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定 +// .setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する +// +// // NotificationChannelの作成(Android 8.0以降) +// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { +// NotificationManager notificationManager = context.getSystemService(NotificationManager.class); +// if (notificationManager != null) { +// NotificationChannel channel = new NotificationChannel( +// CHANNEL_ID, +// "Channel Name", +// NotificationManager.IMPORTANCE_HIGH +// ); +// +// channel.setDescription("Channel Description"); +// channel.enableLights(true); +// channel.setLightColor(Color.RED); +// channel.enableVibration(true); +// notificationManager.createNotificationChannel(channel); +// } +// } +// +// +// NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE); +// if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { +// return; +// } +// notificationManager.notify(R.string.app_name, builder.build());//通知の表示 +// } public void Bluetooth_status() { @@ -431,9 +423,7 @@ public class MainActivity extends AppCompatActivity { String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", "none"); if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) { - //Do something if connected //Bluetoothデバイスが接続されたときの処理 - changeBluetooth(true); Log.d("BT", "Device connected"); Log.d("BT_Judge", "Registered: " + registeredId); @@ -441,6 +431,7 @@ public class MainActivity extends AppCompatActivity { if (deviceHardwareAddress.equals(registeredId)) { //登録済みのデバイスだったときの処理 Log.d("BT_Judge", "登録済み"); + changeBluetooth(true); e.putBoolean("connection_status", true); } else { @@ -450,26 +441,9 @@ public class MainActivity extends AppCompatActivity { } e.apply(); - }else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//bluetoothが切断されたときに乗車状態のとき -// -// //Do something if disconnected - //デバイスが切断されたときの処理 + }else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) { + //bluetoothデバイスが切断されたときの処理 changeBluetooth(false); -// if (deviceHardwareAddress.equals(registeredId)) { -// // 5分待機する -// Handler handler = new Handler(); -// handler.postDelayed(new Runnable() { -// @Override -// public void run() { -// if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//その後bluetoothを再接続したり降車状態になったりしていない=置き去りが発生した可能性大 -// NotificationBluetooth(getApplicationContext());//通知を行うメソッド -// } -// } -// -// }, 5 * 1000); // 5分をミリ秒に変換 -// } -// } else { -// Log.d("BT", " Device disconnected"); } } }; -- 2.45.1