文言修正

This commit is contained in:
ろむねこ 2024-07-11 16:36:21 +09:00
parent e9b08942c4
commit 92f3cf1e0f
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -78,8 +78,8 @@ public class TestService extends Service {
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")
.setContentTitle("ChildGuardバックグラウンドサービス")
.setContentText("接続/通報監視サービスがバックグラウンドで実行されています")
.setSmallIcon(android.R.drawable.ic_menu_info_details)
.setContentIntent(pendingIntent)
.build();