Android App that activates other apps on the device according to time and/or location events -
like create app following -- in background active -- can have list of other 3rd party apps on phone -- can activate them -- can send messages them -- can triggered users location
would have links code examples above? or otherwise comment above?
(0) active (though in background, possible?), while in background mode described in points (2), (3), (4), , (5) in background.
- look background services http://developer.android.com/reference/android/app/service.html
(1) sees other apps on phone (which type of apps possible?). following points (2) , (3) possible if (1) possible.
2) can activate apps/activities seen in (1) . (according user configuration in app abc) example can app create incomming request app startups zygot. please provide code examples of this. @ link ! launches other apps. how harvest list of 3rd party apps? can apps started parameter input?
- not quite sure asking sorry
(3) sends messages background apps on phone (from app abc, according user configuration in app abc), running in background. (3a) android sandbox model allow apps share (file) data?
3 - why this? send 'messages' can use intents both starts other apps , sends them data.
3a - read this, http://developer.android.com/guide/topics/intents/intents-filters.html, if text send string using intent, otherwise save on sdcard , send address other app
(4) can (2) , (3) according time event
- use alarm manager, http://developer.android.com/reference/android/app/alarmmanager.html
(5) tracks users location (if user allows) , (2) , (3) if user reaches or crosses specific location.
- you shouldn't tracking every second, maybe every 5 minutes or query location, http://developer.android.com/reference/android/location/locationmanager.html
also might want read on in general, http://developer.android.com/training/basics/intents/index.html
Comments
Post a Comment