zoukankan      html  css  js  c++  java
  • 5). BlackBerry生命周期 BlackBerry Application LifeCycle and Phasesby

    BlackBerry Application Life-Cycle and Phasesby     

     

     

    The runtime lifecycle defines a common runtime architecture that is the same for all apps. This makes mobile apps much easier to design, and means that you don't have to worry about complex interactions with the system; critical system interactions are already built into the lifecycle.

    BlackBerry Application Life-Cycle

    Following are the events which used in order while your application will move through.

    EventObjectMethod
    Application launched.UiApplicationmain( String[] args )
    OS tells application to start.MainScreenactivate()
    Screen is pushed onto stack.MainScreenonDisplay()
    Screen about to be drawn.MainScreenonUiEngineAttached()
    Menu or dialog is removed.MainScreenonExposed()
    Screen is closed.MainScreenclose()
    OS puts application in background.UiApplicationdeactivate()


    The BlackBerry Tablet OS is a multithreaded, multitasking platform so it can run multiple applications at the same time. While your application is running in the foreground, it is active. However, it can be interrupted when another application opens and replaces yours as the active application
    These events can be fire into three main phases in a BlackBerry application runtime life-cycle:

    1. Startup : startup is generally done by one of the following three ways

      - User clicks the application's icon on the home screen.

      - Application is automatically started when device is turn on.

      - The application is run by another application.
    2. Running
    3. Exiting

    转自: http://www.mindcracker.com/Story/392/blackberry-application-life-cycle-and-phases                                                          

    做个快乐的自己。
  • 相关阅读:
    CF703D Mishka and Interesting sum
    CF697D Puzzles
    SCOI2017酱油记
    [BZOJ4730][清华集训2016][UOJ266] Alice和Bob又在玩游戏
    BZOJ4311:向量
    BZOJ4520: [Cqoi2016]K远点对
    BZOJ4555: [Tjoi2016&Heoi2016]求和
    [Codechef November Challenge 2012] Arithmetic Progressions
    agc040
    补题
  • 原文地址:https://www.cnblogs.com/Jessy/p/2331891.html
Copyright © 2011-2022 走看看