public void onStart(Intent intent,int startId)
{
//MainActivity.this.startService(serviceIntent);
super.startService(intent);
// super.onStart(intent, startId);
System.out.println("start Service ,sleep 10 seconds ");
try{
Thread.sleep(10000);
}catch(InterruptedException e){
e.printStackTrace();
}
}
{
//MainActivity.this.startService(serviceIntent);
super.startService(intent);
// super.onStart(intent, startId);
System.out.println("start Service ,sleep 10 seconds ");
try{
Thread.sleep(10000);
}catch(InterruptedException e){
e.printStackTrace();
}
}