Debug
This commit is contained in:
		
							parent
							
								
									4265b69a83
								
							
						
					
					
						commit
						72b4a01018
					
				@ -1,5 +1,6 @@
 | 
				
			|||||||
package com.example.childguard;
 | 
					package com.example.childguard;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import android.app.Notification;
 | 
				
			||||||
import android.app.NotificationChannel;
 | 
					import android.app.NotificationChannel;
 | 
				
			||||||
import android.app.NotificationManager;
 | 
					import android.app.NotificationManager;
 | 
				
			||||||
import android.app.PendingIntent;
 | 
					import android.app.PendingIntent;
 | 
				
			||||||
@ -51,6 +52,7 @@ public class TestService extends Service {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    public static final String TAG = "InspirationQuote";
 | 
					    public static final String TAG = "InspirationQuote";
 | 
				
			||||||
    private static final String CHANNEL_ID = "child_guard_emergency";
 | 
					    private static final String CHANNEL_ID = "child_guard_emergency";
 | 
				
			||||||
 | 
					    private static final String BACKGROUND_CHANNEL_ID = "child_guard_background";
 | 
				
			||||||
    private static final int REQUEST_CODE = 100;
 | 
					    private static final int REQUEST_CODE = 100;
 | 
				
			||||||
//    private static final int NOTIFICATION_DELAY = 5 * 60 * 1000; // 5 minutes
 | 
					//    private static final int NOTIFICATION_DELAY = 5 * 60 * 1000; // 5 minutes
 | 
				
			||||||
    // DEBUG
 | 
					    // DEBUG
 | 
				
			||||||
@ -70,19 +72,30 @@ public class TestService extends Service {
 | 
				
			|||||||
            return flags; // IDが初期化されていない場合は何もしない
 | 
					            return flags; // IDが初期化されていない場合は何もしない
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        createRunningNotificationChannel();
 | 
				
			||||||
 | 
					        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)
 | 
				
			||||||
 | 
					                .setContentTitle("Test Service Running")
 | 
				
			||||||
 | 
					                .setContentText("This service is running in the foreground")
 | 
				
			||||||
 | 
					                .setSmallIcon(android.R.drawable.ic_menu_info_details)
 | 
				
			||||||
 | 
					                .setContentIntent(pendingIntent)
 | 
				
			||||||
 | 
					                .build();
 | 
				
			||||||
 | 
					        startForeground(1, notification);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        setSnapshotListener(FirebaseFirestore.getInstance().document("status/" + this.userId));
 | 
					        setSnapshotListener(FirebaseFirestore.getInstance().document("status/" + this.userId));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (isNotBluetoothGranted()) return flags;
 | 
					        if (isNotBluetoothGranted()) return flags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        registerReceiver(receiver);
 | 
					        registerReceiver(receiver);
 | 
				
			||||||
        return flags;
 | 
					        return START_STICKY;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Override
 | 
					    @Override
 | 
				
			||||||
    public void onCreate() {
 | 
					    public void onCreate() {
 | 
				
			||||||
        super.onCreate();
 | 
					        super.onCreate();
 | 
				
			||||||
        if (!isNotificationChannelCreated()) {
 | 
					        if (!isNotificationChannelCreated()) {
 | 
				
			||||||
            createNotificationChannel();
 | 
					            createAlertNotificationChannel();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -98,7 +111,7 @@ public class TestService extends Service {
 | 
				
			|||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 通知チャネルの作成
 | 
					     * 通知チャネルの作成
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    private void createNotificationChannel() {
 | 
					    private void createAlertNotificationChannel() {
 | 
				
			||||||
        int importance = NotificationManager.IMPORTANCE_DEFAULT;
 | 
					        int importance = NotificationManager.IMPORTANCE_DEFAULT;
 | 
				
			||||||
        NotificationChannel channel = new NotificationChannel(CHANNEL_ID, "通知", importance);
 | 
					        NotificationChannel channel = new NotificationChannel(CHANNEL_ID, "通知", importance);
 | 
				
			||||||
        channel.setDescription("第三者により置き去りの通報が行われたときに通知します。");
 | 
					        channel.setDescription("第三者により置き去りの通報が行われたときに通知します。");
 | 
				
			||||||
@ -106,6 +119,18 @@ public class TestService extends Service {
 | 
				
			|||||||
        notificationManager.createNotificationChannel(channel);
 | 
					        notificationManager.createNotificationChannel(channel);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private void createRunningNotificationChannel() {
 | 
				
			||||||
 | 
					        NotificationChannel serviceChannel = new NotificationChannel(
 | 
				
			||||||
 | 
					                CHANNEL_ID,
 | 
				
			||||||
 | 
					                "Foreground Service Channel",
 | 
				
			||||||
 | 
					                NotificationManager.IMPORTANCE_DEFAULT
 | 
				
			||||||
 | 
					        );
 | 
				
			||||||
 | 
					        NotificationManager manager = getSystemService(NotificationManager.class);
 | 
				
			||||||
 | 
					        if (manager != null) {
 | 
				
			||||||
 | 
					            manager.createNotificationChannel(serviceChannel);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 通知が許可がされているかどうかを確認
 | 
					     * 通知が許可がされているかどうかを確認
 | 
				
			||||||
     * @return 通知の許可の有無 true: 許可されていない false: 許可されている
 | 
					     * @return 通知の許可の有無 true: 許可されていない false: 許可されている
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user