My AlarmManager for service update doesn't work
问题 Why my AlarmManager for service update doesn't work? this is my code: public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); startService(); } // Method to start the service public void startService() { startService(new Intent(getBaseContext(), MyService.class)); } // Method to stop the service public void stopService() { stopService(new Intent