How to create an android autostart application? my app shows special date notifications and it must automatically start. tnx
Asked
Active
Viewed 1,683 times
3
-
Take a look at services – Tobrun Feb 25 '14 at 12:29
-
3You can find your answer here: http://dannywind.nl/auto-start-delphi-xe5-android-app-after-boot/ – Filipe.Fonseca Feb 25 '14 at 12:30
-
Means you want your app will start after a particular data and time ? – Yogendra Feb 25 '14 at 12:32
-
I want app start after boot. – Hamid Feb 25 '14 at 12:42
-
Tnx. My app started automatically. Now I want hide app in boot start. (only show form in manually run) – Hamid Feb 26 '14 at 12:04
1 Answers
1
You can use AlarmManager to schedule a time for when you'd like your application to launch. And you can use BroadcastReceiver to launch your app on a specific operating system event such as boot complete.

Steven Trigg
- 1,903
- 2
- 19
- 22
-
-
1Please see the tutorial as suggested by Filipe.Fonseca in a comment above. It has references to using BroadcastReceiver in an XE5 environment. – Steven Trigg Feb 25 '14 at 12:44