From 0bdbc555188b09d6662dd427baf3971783dbe363 Mon Sep 17 00:00:00 2001 From: it232115 Date: Fri, 19 Jan 2024 05:35:11 +0900 Subject: [PATCH] =?UTF-8?q?Bluetooth=E5=88=87=E6=96=AD=E5=BE=8C=E3=81=AE5?= =?UTF-8?q?=E5=88=86=E6=AF=8E=E3=81=AE=E3=83=AB=E3=83=BC=E3=83=97=E3=81=AB?= =?UTF-8?q?=E3=82=88=E3=82=8B=E9=80=9A=E7=9F=A5=E3=82=92=E8=BF=BD=E5=8A=A0?= =?UTF-8?q?=E3=81=97=E3=81=BE=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 | 96 ++++++++++------ .../com/example/childguard/TestService.java | 107 ++++++++++++++++-- 2 files changed, 156 insertions(+), 47 deletions(-) diff --git a/app/src/main/java/com/example/childguard/MainActivity.java b/app/src/main/java/com/example/childguard/MainActivity.java index eef2b67..7ca75f1 100644 --- a/app/src/main/java/com/example/childguard/MainActivity.java +++ b/app/src/main/java/com/example/childguard/MainActivity.java @@ -3,6 +3,7 @@ package com.example.childguard; import android.annotation.SuppressLint; import android.app.NotificationChannel; import android.app.NotificationManager; +import android.app.PendingIntent; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothManager; @@ -12,7 +13,9 @@ import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.pm.PackageManager; +import android.graphics.Color; import android.net.Uri; +import android.os.Build; import android.os.Bundle; import android.os.Vibrator; import android.preference.PreferenceManager; @@ -27,7 +30,6 @@ import androidx.appcompat.app.AppCompatActivity; import androidx.browser.customtabs.CustomTabsIntent; import androidx.core.app.ActivityCompat; import androidx.core.app.NotificationCompat; -import androidx.core.app.NotificationManagerCompat; import androidx.fragment.app.Fragment; import com.google.android.gms.tasks.OnFailureListener; @@ -41,12 +43,8 @@ import com.google.firebase.firestore.FirebaseFirestoreException; import com.journeyapps.barcodescanner.ScanContract; import com.journeyapps.barcodescanner.ScanOptions; -import java.text.DateFormat; -import java.text.SimpleDateFormat; -import java.util.Date; import java.util.HashMap; import java.util.Map; -import java.util.concurrent.Future; public class MainActivity extends AppCompatActivity { @@ -190,7 +188,8 @@ public class MainActivity extends AppCompatActivity { NotificationManager notificationManager = getSystemService(NotificationManager.class); notificationManager.createNotificationChannel(channel); Log.d("nt", "レスポンスを検知しました2"); - notifyMain();// notifyMain()メソッドを処理→通知のメソッド + NotificationSetting();//通知に関する設定のメソッド + Notification(getApplicationContext());//通知を行うメソッド ResetReported();// ResetReported();メソッドを処理→FireBaseのisReportedをfalseにする } else{//第三者ボタンが押されたときにisInCarがfalseのとき=降車状態のとき ResetReported();// ResetReported();を処理→FireBaseのisReportedをfalseにする @@ -241,35 +240,6 @@ public class MainActivity extends AppCompatActivity { } }; - //↓通知のやつ - public void notifyMain() { - //↓通知をする際に起動するバイブレーション - ((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(1000); - //↓通知の詳細設定的な奴 - NotificationCompat.Builder builder = new NotificationCompat - .Builder(this, "CHANNEL_ID") - .setSmallIcon(android.R.drawable.ic_menu_info_details) - .setContentTitle("通報検知") - .setContentText("子供の置き去りを検知しました。") - .setPriority(NotificationCompat.PRIORITY_DEFAULT); - - NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this); - - if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { - // TODO: Consider calling - // ActivityCompat#requestPermissions - // here to request the missing permissions, and then overriding - // public void onRequestPermissionsResult(int requestCode, String[] permissions, - // int[] grantResults) - // to handle the case where the user grants the permission. See the documentation - // for ActivityCompat#requestPermissions for more details. - return; - } - notificationManager.notify(R.string.app_name, builder.build()); - - - } - public void ResetReported(){//FireBaseのisReportedをfalseに初期化するメソッド //共有プリファレンス全体の準備 SharedPreferences sharedPreferences = MainActivity.this.getSharedPreferences("app_situation", MODE_PRIVATE); @@ -289,6 +259,62 @@ public class MainActivity extends AppCompatActivity { } }); } + public void NotificationSetting() {//通知に関する設定の処理を行うメソッド + int importance = NotificationManager.IMPORTANCE_DEFAULT; + //通知チャネルの実装 + NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通知", importance); + channel.setDescription("第三者により置き去りの通報が行われたときに通知します。"); + + NotificationManager notificationManager = getSystemService(NotificationManager.class); + notificationManager.createNotificationChannel(channel); + + } + public void Notification(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("第三者からの通報が行われました。")//通知の本文 + .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 changessituation(){//乗降状態の管理をするためにHomeFramgentを呼び出すメソッド diff --git a/app/src/main/java/com/example/childguard/TestService.java b/app/src/main/java/com/example/childguard/TestService.java index b25a3f1..f897f58 100644 --- a/app/src/main/java/com/example/childguard/TestService.java +++ b/app/src/main/java/com/example/childguard/TestService.java @@ -11,19 +11,16 @@ import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.graphics.Color; import android.os.Build; +import android.os.Handler; import android.os.IBinder; +import android.os.Looper; import android.os.Vibrator; import android.util.Log; -import android.widget.Toast; -import android.content.Context; -import android.content.Intent; -import android.content.BroadcastReceiver; + import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.core.app.ActivityCompat; import androidx.core.app.NotificationCompat; -import androidx.core.app.NotificationManagerCompat; -import androidx.fragment.app.Fragment; import com.google.android.gms.tasks.OnFailureListener; import com.google.android.gms.tasks.OnSuccessListener; @@ -35,7 +32,6 @@ import com.google.firebase.firestore.FirebaseFirestoreException; import java.util.HashMap; import java.util.Map; -import java.util.concurrent.Executor; public class TestService extends Service { FirebaseFirestore db; @@ -43,6 +39,8 @@ public class TestService extends Service { public static final String TAG = "InspirationQuote"; + public PeriodicTaskManager periodicTaskManager; + @Override public int onStartCommand(Intent intent, int flags, int startId) { @@ -59,11 +57,13 @@ public class TestService extends Service { } private void initNotification(DocumentReference mDocRef) {//サイト上で押されたボタンの管理 - + // PeriodicTaskManagerのインスタンス化 + periodicTaskManager = new PeriodicTaskManager(); // 共有プリファレンス全体の準備 SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE); //車の乗り降りを管理するtrue=乗車、false=降車 mDocRef.addSnapshotListener(new EventListener() {//exists()でdocumentSnapshotの中のファイルの存在の確認 + @Override public void onEvent(@Nullable DocumentSnapshot documentSnapshot, @Nullable FirebaseFirestoreException e) { @@ -85,10 +85,13 @@ public class TestService extends Service { notificationManager.createNotificationChannel(channel); Log.d("nt", "レスポンスを検知しました2"); NotificationSetting();//通知に関する設定のメソッド - Notification(getApplicationContext());//バイブレーション、音、バナーによる通知を行うメソッド - } else {//それ以外のとき + Notification(getApplicationContext());//通知を行うメソッド + } else if(!isInCar){//Bluetoothの切断後5分以上乗車状態のままのとき→QRコード読み取りを忘れているとき→置き去り発生 ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする - Log.d("nt", "何もなし"); + periodicTaskManager.stopPeriodicTask();//通知のループをストップする + }else { + ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする + periodicTaskManager.startPeriodicTask();//5分毎に通知を行う } } @@ -98,7 +101,6 @@ public class TestService extends Service { } - public void ResetReported() {//FireBaseのisReportedをfalseに初期化するメソッド //共有プリファレンス全体の準備 SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE); @@ -177,6 +179,87 @@ public class TestService extends Service { } 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("Bluetootと車の切断から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 class PeriodicTaskManager {//Bluetoothの切断後に乗車状態にならなかった場合に5分毎に通知を送るメソッド + + private static final long INTERVAL = 5 *60* 1000; //300秒 + private final Handler handler; + private final Runnable periodicTask; + + public PeriodicTaskManager() { + + handler = new Handler(Looper.getMainLooper()); + periodicTask = new Runnable() { + + public void run() { + + //共有プリファレンス全体の準備 + SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE); + Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス + // 5分毎に実行される処理 + NotificationBluetooth(getApplicationContext()); + Log.d("PeriodicTask", "5分後に処理を実行します"); + + handler.postDelayed(this, INTERVAL); + } + }; + } + + public void startPeriodicTask() { + // 最初の実行 + handler.postDelayed(periodicTask,INTERVAL);//一回目は5分後に行う + } + + public void stopPeriodicTask() { + // 定期的な処理の停止 + handler.removeCallbacks(periodicTask); + } + } @Nullable @Override public IBinder onBind(Intent intent) {