更新时间:2021-07-16 20:33:04
coverpage
Xamarin Mobile Application Development for Android Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Support files eBooks discount offers and more
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Chapter 1. The Anatomy of an Android App
The Android platform
The application framework
The building blocks of the Android application
Summary
Chapter 2. The Xamarin.Android Architecture
Getting started with Xamarin
Why Xamarin.Android?
What is Mono?
Mono and Dalvik side by side
The Android bindings design
Development environments
Chapter 3. Creating the Points Of Interest App
The sample POIApp
Installing Xamarin.Android
Installing platforms and tools
Creating Android Virtual Devices
Cloning a virtual device
Speeding up the Android emulator
Creating the POI app
The Xamarin Studio IDE
The Project Options view
The Xamarin Studio layout designer
Setting the app icon and package name
The launcher activity
Running and debugging the app
Debugging with an Android device
The AndroidManifest.xml file
Chapter 4. Adding a List View
Creating the POI ListView layout
Creating POIListActivity
Creating the POI list row layout
Creating the PointOfInterest apps entity class
Populating the ListView item
Creating POIListViewAdapter
Populating row Views
Hooking up POIListViewAdapter
Consuming the web service
Adding actions to ActionBar
Defining the menu XML file
Setting menus in OnCreateOptionsMenu()
Handling selection in OnOptionsItemSelected()
Handling the ListView click event
Handling no network condition
Toast
Chapter 5. Adding a Details View
Creating the POIDetail layout
Creating POIDetailActivity
Adding navigation to POIDetailActivity
Receiving the data in POIDetailActivity
Populating user interface widgets
Adding the save and delete actions
Adding the save and delete actions in POIService
Creating SavePOI()
Creating DeletePOI()
Adding validation
Refreshing POIListActivity
Chapter 6. Making Your App Orientation-aware
The Android behavior on configuration changes
Locking the Android application orientation
Dynamically requesting the orientation
Saving the activity state for configuration changes
Building the orientation-aware layout
Manually handling the orientation behavior
Chapter 7. Designing for Multiple Screen Sizes
An introduction to Android tablets
Creating an Android tablet emulator
An introduction to fragments
Making POIApp compatible with Android tablets
Using fragments for displaying POIDetails
Using the list fragment for displaying the POI list
Creating a multi-pane layout for tablets
Updating the POIApp to support the multi-pane split layout
Working with DialogFragment
Fragments for older Android devices
Handling configuration changes with fragments
Chapter 8. Creating Data Storage Mechanisms
Data storage in Android
Using the SQLite.net ORM component
Using the Xamarin.Android NUnitLite