How to start service after booting that run the onCreate()
function on mainActivity
? i already use broadcastRecivier
, i can make the service, but i cannot execute the funtion from main activity.
this is my code broadcastReciver
public class BootStartUpReciver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
//Start service on Boot
if(intent.getAction().equals(intent.getAction())){
Intent service = new Intent(context,TestService.class);
service.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(service);
}
//Start App on Boot Start up
if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){
//if(intent.getAction().equals(intent.getAction())){
Intent app = new Intent(context,TestService.class);
app.setClass(context,SatuActivity.class);
app.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(app);
}
}
}
I think you are starting Activity as a Service.. please change to startActivity()