[Solved] Countdown to 3 month period android [closed]
I’m not sure if I understand your question correctly. If you want to invoke some code on May, 17th, you could use AlarmManager. So, first you have to create Activity or Service (let’s assume latter – ex. MyService) and then use code like that: Intent intent = new Intent(this, MyService.class); PendingIntent pi = PendingIntent.getService( getApplicationContext(), … Read more