1 / 27

Introduction to Android Development Using .NET and MonoDroid

Introduction to Android Development Using .NET and MonoDroid. Greg Shackles Senior Application Developer MagazineRadar greg@gregshackles.com. Fairfield / Westchester Code Camp 4 (2010). We thank the following companies for their gracious sponsorship:. Platinum. Gold. Silver.

bree
Télécharger la présentation

Introduction to Android Development Using .NET and MonoDroid

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Android Development Using .NET and MonoDroid Greg Shackles Senior Application Developer MagazineRadar greg@gregshackles.com

  2. Fairfield / Westchester Code Camp 4 (2010) We thank the following companies for their gracious sponsorship: Platinum Gold Silver Other Material Contributions Came From:

  3. About Me • Greg Shackles • greg@gregshackles.com • www.gregshackles.com • Twitter: @gshackles Fairfield / Westchester Code Camp 4 (2010)

  4. What We’ll Cover • What is Android? • Android architecture • Application lifecycle • Mono/MonoDroid • Demos Fairfield / Westchester Code Camp 4 (2010)

  5. What is Android? • Full stack • Open source • SDK provides tools and Java API • All applications written in Java • Purchased by Google in 2005 • v1.0 released in October 2008 Fairfield / Westchester Code Camp 4 (2010)

  6. Market Share (US) 21.4% 13% Source: comScore Fairfield / Westchester Code Camp 4 (2010)

  7. Architecture Fairfield / Westchester Code Camp 4 (2010)

  8. Architecture Fairfield / Westchester Code Camp 4 (2010)

  9. Architecture Fairfield / Westchester Code Camp 4 (2010)

  10. Architecture Fairfield / Westchester Code Camp 4 (2010)

  11. Architecture Fairfield / Westchester Code Camp 4 (2010)

  12. Component Types Fairfield / Westchester Code Camp 4 (2010)

  13. Activities • Provides UI for one screen • Can start other activities • Hierarchy of views Fairfield / Westchester Code Camp 4 (2010)

  14. Activity Lifecycle Activity Starts onRestart() onStart() onResume() onCreate() User navigates back to the activity Activity is running User navigates back to the activity User navigates back to the activity Another activity is loaded Process killed Other apps need memory onPause() This activity is no longer visible onStop() Activity is shut down onDestroy() Fairfield / Westchester Code Camp 4 (2010)

  15. Activity Lifecycle (Simplified) • Activity stack • Activity has 3 basic states • Running • Paused • Stopped • Configuration changes cause activity restart Fairfield / Westchester Code Camp 4 (2010)

  16. Broadcast Receivers • No UI • Can start an activity • Receive/react to announcements • Examples: low battery, phone call Fairfield / Westchester Code Camp 4 (2010)

  17. Services • No UI, runs in background • Stays running when application loses focus • Can be accessed by many applications • Example: music player Fairfield / Westchester Code Camp 4 (2010)

  18. Content Providers • Enables applications to share data Fairfield / Westchester Code Camp 4 (2010)

  19. Intents • Messages used to activate components • Launch an activity • Start or bind to a service • Broadcast a message to receivers • Implicit intents • Intent filters • Example: launcher Fairfield / Westchester Code Camp 4 (2010)

  20. Storage • Shared preferences • Internal storage • External storage (SD card) • Database (SQLite) • Remote Fairfield / Westchester Code Camp 4 (2010)

  21. Wouldn’t it be awesome to write Android applications in .NET? Fairfield / Westchester Code Camp 4 (2010)

  22. Wouldn’t it be awesome to write Android applications in .NET? With MonoDroid, you can! Fairfield / Westchester Code Camp 4 (2010)

  23. What is Mono? • Implementation of the .NET CLR • Open source • Cross platform • Supports most of .NET 4.0 • Missing WPF, Entity Framework, WF, some WCF Fairfield / Westchester Code Camp 4 (2010)

  24. What is MonoDroid? • Runs side by side with Dalvik • Wraps Java/Android API bindings • Exposes them in a .NET friendly way • Commercial product • Currently in private beta • Visual Studio 2010 or MonoDevelop Fairfield / Westchester Code Camp 4 (2010)

  25. MonoDroid Architecture • Android/Managed Callable Wrappers • JNI bridges to talk between Android and Mono • Shared runtime Fairfield / Westchester Code Camp 4 (2010)

  26. Questions? Fairfield / Westchester Code Camp 4 (2010)

  27. Useful Links • http://monodroid.net/ • http://mono-project.com • http://developer.android.com • http://source.android.com/ Fairfield / Westchester Code Camp 4 (2010)

More Related