Android Question How to make notification even if the app is closed?

kudeta21

New Member
Good afternoon, I'm new to b4a :] . I just want to know how to make notifications .. even if the app is closed .. Ex: Set time and then the notification appears . Thanks!
 

DonManfred

Expert
Licensed User
Longtime User
You need to use a SERVICE for this.
Search the Service totorials on how to
Inform about how to reshedule a service to a given time.

At the end it will go a way like this:

- You app is started.
- You app starts a service.
- The service calculated the time the notification should appear.
- The service will reshdule itself to the given time. When sheduled the service will finish and come back at the given time
- The service need to check if it is now time to show the notification. If it is time it will create a notification.
 
Upvote 0

kudeta21

New Member
thanks for your fast replies! :] i'll check on what your are saying . thanks again :]

can you give me links?
 
Last edited:
Upvote 0

kudeta21

New Member
thank you again for your replies :] i am finished with this matter :] Thanks everyone .. my new problem now is integrating mysql database for this one :] I'm going to search for it . Again . Thanks for your replies :]
 
Upvote 0
Top