สอบถาม Background Service ครับผมจะทำให้โปรแกรมรันตลอดเวลาแม้ปิดแล้วโดยให้ส่งข้อมูลไป API ตลอดเวลา แต่เหมือนกับพอเวลาผมปิด App ลงแล้วกลายเป็นว่ามันไม่ยอมส่งไปหา API อีกเลย ต้องเขียนไรเพิ่มไหมครับ Code (Android-Java)
Class Trun
package com.example.myapplication;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.StrictMode;
public class MyService extends Service {
public MyService() {
}
private Trun t ;
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
@Override
public void onCreate() {
Trun.context = this;
t = new Trun();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if(t.isAlive()==false){
t.start();
}
return START_STICKY;
}
}