Android application entry points
Understand application entry points, which fundamentally define how Android runs an application.
Read time 1 minuteLast updated 7 days ago
The application entry point fundamentally defines how Android runs your application. It defines aspects such as the type of game loop thread your application runs on and the implementation of lifecycle events, input events, and the onscreen keyboard. Each application entry point has distinct purpose, benefits, and limitations. Refer to the following sections to evaluate these factors and select the entry point that best fits your application requirements.
Topic | Description |
|---|---|
| The Activity application entry point | Understand the Activity application entry point so you can determine whether it's the most appropriate one for your application. |
| The GameActivity application entry point | Understand the GameActivity application entry point so you can determine whether it's the most appropriate one for your application. |
| Set the application entry point for your Android application | Choose which application entry point to use for your Android application. |