Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 381 Bytes

android-notes.md

File metadata and controls

15 lines (12 loc) · 381 Bytes

Android Overview

  • Activity - window/dialog in desktop app. Short lived.
  • Serivces - keep running, scheduled tasks, exposing custom API's
  • Content Providers - make data available
  • Intents - system messages/events. Can respond or create your own.

Capabilities

  • Storage - area of filesystem for storage
  • Network -
  • Multimedia
  • GPS
  • Phone Services

Page 27 (Chapter 3)