User Tools

Site Tools


built_in:app_events

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
built_in:app_events [2018/12/30 01:47]
114.125.41.56 [App Events]
built_in:app_events [2018/12/30 13:31] (current)
Line 1: Line 1:
 +====== App Events ======
 +There are a few functions that are triggered when certain system events occur.
  
 +They are
 +^ Function        ^ Called when                                                                 ^
 +| OnStart()       | application is created                                                      |
 +| OnMenu( name )  | user selects a menu item                                                    |
 +| OnBack()        | the back key is pressed but only if it follows app.EnableBackKey( false );  |
 +| OnPause()       | application is paused. (eg. When user switches to home screen)              |
 +| OnResume()      | application is resumed. (eg. When user returns from home screen)            |
 +| OnConfig()      | configuration changes. (eg. When user rotates phone)                        |
 +| OnAlarm()       | an alarm previously set by app.SetAlarm() is triggered                      |
 +| OnData()        | data sent by Android Intents                                                |
 +
 +The code of the sample that is bundled with DroidScript is reproduced below without permission. Hope you don't mind, guys.
 <code javascript appEvents.js> <code javascript appEvents.js>
 //Called when application is created. //Called when application is created.
built_in/app_events.1546134465.txt.gz ยท Last modified: 2018/12/30 09:47 (external edit)