Compare commits

...

2 Commits

View File

@ -339,60 +339,52 @@ public class MainActivity extends AppCompatActivity {
notificationManager.notify(R.string.app_name, builder.build());//通知の表示 notificationManager.notify(R.string.app_name, builder.build());//通知の表示
} }
// public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド
@Override // final String CHANNEL_ID = "my_channel_id";
public void onStop() {//アプリをバックグラウンドにした時のメソッド // // 通知がクリックされたときに送信されるIntent
super.onStop(); // Intent intent = new Intent(context, MainActivity.class);
// Intent intent = new Intent(getApplication(), TestService.class); // intent.setAction("OPEN_ACTIVITY");
// startService(intent);//TestServiceを起動 // // PendingIntentの作成
} // int requestCode = 100;
// int flags = 0;
public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド // PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE);
final String CHANNEL_ID = "my_channel_id"; //
// 通知がクリックされたときに送信されるIntent // ((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション
Intent intent = new Intent(context, MainActivity.class); //
intent.setAction("OPEN_ACTIVITY"); // @SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID")
// PendingIntentの作成 // .setSmallIcon(android.R.drawable.ic_menu_info_details)
int requestCode = 100; // .setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル
int flags = 0; // .setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文
PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE); // .setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する
// .setAutoCancel(true)//通知をタップすると削除する
((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション // .setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定
// .setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する
@SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID") //
.setSmallIcon(android.R.drawable.ic_menu_info_details) // // NotificationChannelの作成Android 8.0以降
.setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル // if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
.setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文 // NotificationManager notificationManager = context.getSystemService(NotificationManager.class);
.setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する // if (notificationManager != null) {
.setAutoCancel(true)//通知をタップすると削除する // NotificationChannel channel = new NotificationChannel(
.setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定 // CHANNEL_ID,
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する // "Channel Name",
// NotificationManager.IMPORTANCE_HIGH
// NotificationChannelの作成Android 8.0以降 // );
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { //
NotificationManager notificationManager = context.getSystemService(NotificationManager.class); // channel.setDescription("Channel Description");
if (notificationManager != null) { // channel.enableLights(true);
NotificationChannel channel = new NotificationChannel( // channel.setLightColor(Color.RED);
CHANNEL_ID, // channel.enableVibration(true);
"Channel Name", // notificationManager.createNotificationChannel(channel);
NotificationManager.IMPORTANCE_HIGH // }
); // }
//
channel.setDescription("Channel Description"); //
channel.enableLights(true); // NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
channel.setLightColor(Color.RED); // if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
channel.enableVibration(true); // return;
notificationManager.createNotificationChannel(channel); // }
} // notificationManager.notify(R.string.app_name, builder.build());//通知の表示
} // }
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() { public void Bluetooth_status() {
@ -431,9 +423,7 @@ public class MainActivity extends AppCompatActivity {
String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", "none"); String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", "none");
if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) { if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
//Do something if connected
//Bluetoothデバイスが接続されたときの処理 //Bluetoothデバイスが接続されたときの処理
changeBluetooth(true);
Log.d("BT", "Device connected"); Log.d("BT", "Device connected");
Log.d("BT_Judge", "Registered: " + registeredId); Log.d("BT_Judge", "Registered: " + registeredId);
@ -441,6 +431,7 @@ public class MainActivity extends AppCompatActivity {
if (deviceHardwareAddress.equals(registeredId)) { if (deviceHardwareAddress.equals(registeredId)) {
//登録済みのデバイスだったときの処理 //登録済みのデバイスだったときの処理
Log.d("BT_Judge", "登録済み"); Log.d("BT_Judge", "登録済み");
changeBluetooth(true);
e.putBoolean("connection_status", true); e.putBoolean("connection_status", true);
} else { } else {
@ -450,26 +441,9 @@ public class MainActivity extends AppCompatActivity {
} }
e.apply(); e.apply();
}else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//bluetoothが切断されたときに乗車状態のとき }else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) {
// //bluetoothデバイスが切断されたときの処理
// //Do something if disconnected
//デバイスが切断されたときの処理
changeBluetooth(false); 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");
} }
} }
}; };