フォアグラウンドサービスとして開始するように

This commit is contained in:
ろむねこ 2024-07-11 16:31:14 +09:00
parent 5f3e2c0e94
commit e257038e40
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -136,6 +136,8 @@ public class MainActivity extends AppCompatActivity {
} }
registerReceiver(receiver, intentFilter); registerReceiver(receiver, intentFilter);
startForegroundService(new Intent(this, TestService.class));
} }
@ -334,8 +336,8 @@ public class MainActivity extends AppCompatActivity {
@Override @Override
public void onStop() {//アプリをバックグラウンドにした時のメソッド public void onStop() {//アプリをバックグラウンドにした時のメソッド
super.onStop(); super.onStop();
Intent intent = new Intent(getApplication(), TestService.class); // Intent intent = new Intent(getApplication(), TestService.class);
startService(intent);//TestServiceを起動 // startService(intent);//TestServiceを起動
} }
public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド public void NotificationBluetooth(Context context) {//実際に通知を行うメソッド