Compare commits
No commits in common. "7fac075a8bc1e54dc4f43ba3ed6fbff3b6c1ebaf" and "49aa1ac8a77b3f5b562e793a4c21244ab146f147" have entirely different histories.
7fac075a8b
...
49aa1ac8a7
|
@ -339,52 +339,60 @@ 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) {//実際に通知を行うメソッド
|
|
||||||
// final String CHANNEL_ID = "my_channel_id";
|
@Override
|
||||||
// // 通知がクリックされたときに送信されるIntent
|
public void onStop() {//アプリをバックグラウンドにした時のメソッド
|
||||||
// Intent intent = new Intent(context, MainActivity.class);
|
super.onStop();
|
||||||
// intent.setAction("OPEN_ACTIVITY");
|
// Intent intent = new Intent(getApplication(), TestService.class);
|
||||||
// // PendingIntentの作成
|
// startService(intent);//TestServiceを起動
|
||||||
// int requestCode = 100;
|
}
|
||||||
// int flags = 0;
|
|
||||||
// PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE);
|
public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド
|
||||||
//
|
final String CHANNEL_ID = "my_channel_id";
|
||||||
// ((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション
|
// 通知がクリックされたときに送信されるIntent
|
||||||
//
|
Intent intent = new Intent(context, MainActivity.class);
|
||||||
// @SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID")
|
intent.setAction("OPEN_ACTIVITY");
|
||||||
// .setSmallIcon(android.R.drawable.ic_menu_info_details)
|
// PendingIntentの作成
|
||||||
// .setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル
|
int requestCode = 100;
|
||||||
// .setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文
|
int flags = 0;
|
||||||
// .setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する
|
PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE);
|
||||||
// .setAutoCancel(true)//通知をタップすると削除する
|
|
||||||
// .setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定
|
((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション
|
||||||
// .setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する
|
|
||||||
//
|
@SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "CHANNEL_ID")
|
||||||
// // NotificationChannelの作成(Android 8.0以降)
|
.setSmallIcon(android.R.drawable.ic_menu_info_details)
|
||||||
// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
.setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル
|
||||||
// NotificationManager notificationManager = context.getSystemService(NotificationManager.class);
|
.setContentText("Bluetoothと車の切断から5分が経過しました")//通知の本文
|
||||||
// if (notificationManager != null) {
|
.setContentIntent(pendingIntent)//通知をタップするとActivityへ移動する
|
||||||
// NotificationChannel channel = new NotificationChannel(
|
.setAutoCancel(true)//通知をタップすると削除する
|
||||||
// CHANNEL_ID,
|
.setPriority(NotificationCompat.PRIORITY_HIGH) // プライオリティを高く設定
|
||||||
// "Channel Name",
|
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC); // ロック画面に表示する
|
||||||
// NotificationManager.IMPORTANCE_HIGH
|
|
||||||
// );
|
// NotificationChannelの作成(Android 8.0以降)
|
||||||
//
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
// channel.setDescription("Channel Description");
|
NotificationManager notificationManager = context.getSystemService(NotificationManager.class);
|
||||||
// channel.enableLights(true);
|
if (notificationManager != null) {
|
||||||
// channel.setLightColor(Color.RED);
|
NotificationChannel channel = new NotificationChannel(
|
||||||
// channel.enableVibration(true);
|
CHANNEL_ID,
|
||||||
// notificationManager.createNotificationChannel(channel);
|
"Channel Name",
|
||||||
// }
|
NotificationManager.IMPORTANCE_HIGH
|
||||||
// }
|
);
|
||||||
//
|
|
||||||
//
|
channel.setDescription("Channel Description");
|
||||||
// NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
|
channel.enableLights(true);
|
||||||
// if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
|
channel.setLightColor(Color.RED);
|
||||||
// return;
|
channel.enableVibration(true);
|
||||||
// }
|
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() {
|
||||||
|
@ -423,7 +431,9 @@ 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);
|
||||||
|
@ -431,7 +441,6 @@ 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 {
|
||||||
|
@ -441,9 +450,26 @@ public class MainActivity extends AppCompatActivity {
|
||||||
}
|
}
|
||||||
e.apply();
|
e.apply();
|
||||||
|
|
||||||
}else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) {
|
}else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//bluetoothが切断されたときに乗車状態のとき
|
||||||
//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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user