AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
Android (operating system)

Android is a mobile operating system primarily developed by Google. It's the most widely used operating system in the world with over three billion monthly active users.

Warning
At the moment, support of Android in AUI Framework is in early stage and lacks a lot of features.

The core operating system, known as AOSP, is free and open-source, but most devices run Google's proprietary version of Android.

Its ecosystem includes apps like Google Chrome and Google Play Store, which are pre-installed on many devices. Modified distributions exist, such as Amazon Fire OS and LineageOS, and it has been used to develop operating systems for various electronics like TVs and wearables.

Android shares its kernel with Linux (-based desktop OSes), but is not treated by AUI exactly as Linux.

Key considerations#

  • Like Linux (-based desktop OSes), Android is customizable - core services and components tend to vary depending on device manufacturer. It's mostly AUI's responsibility and AUI-based applications are mostly immune to such specifics unless they use native Java/Kotlin APIs
  • Android apps can't be customized by the end user, with an exception to fonts, launcher icons and virtual keyboard
  • Android app workflows use "back button" to close or navigate to previous page. Newer devices tend to lack such button in hardware, so they use software button/gesture instead

AUI implementation specifics#

Member APath::APPDATA
Maps to \<internal_storage_path\>/__aui_appdata.
Member APath::TEMP
Maps to AUI-managed temporary directory: \<internal_storage_path\>/__aui_tmp.
Member AUI_ENTRY
Only the main thread is able to initialize graphics context.
Member DEFAULT
Corresponds to IME_ACTION_UNSPECIFIED. "Done" button or "Return" key will be likely displayed.
Member DONE
Corresponds to IME_ACTION_DONE. The OS displays completion action, e.g., "Done", checkmark, arrow.
Member GO
Corresponds to IME_ACTION_GO. The OS displays a button that represents going to the target location, e.g., "Go", right-facing arrow.
Member NEXT
Corresponds to IME_ACTION_NEXT. The OS displays a button that represents moving forward, e.g., "Next", right-facing arrow.
Member SEARCH
Corresponds to IME_ACTION_SEARCH. The OS displays a button that represents seacrhing action, e.g., "Search", magnifying glass.
Member SEND
Corresponds to IME_ACTION_SEND. The OS displays a button that represents sending something, e.g., "Send", paper plane.