SlideShare a Scribd company logo
1 of 49
Android L and So Much More 
James Montemagno 
Developer Evangelist, Xamarin 
@JamesMontemagno
New in Android 
– Android L Developer Preview 
– Android Wear 
– Android TV
Android L Developer Preview
Android L Major Features 
 ART Runtime 
 Material Design 
 Widgets, Views, and Shadows 
 Animations 
 Notifications 
 Compatibility
Android L Major Features 
ART 
Runtime 
 Ahead-of-Time compilation 
 Improved Garbage Collection 
 Improved Debugging Support
Android L Major Features 
Material 
Design 
Material metaphor Bold, graphic, intentional Motion provides meaning 
google.com/design/spec/material-design/introduction.html
 Brand new style for 
applications. 
• Theme.Material 
• Theme.Material.Light 
• Theme.Material.Light. 
DarkActionBar 
Material Design
 colorPrimary – App 
Branding Color 
 colorPrimaryDark – Status 
bar & contextual bars 
 colorAccent – Theme UI 
Controls (ie. checkbox) 
Material Design – Color Palette
Material Design – Color Palette
 Extract Prominent 
Colors from Image 
 6 Palettes Generated 
Material Design –Palettes 
Generate a color pallet from an image 
https://www.nuget.org/packages/Xamarin.Android.Support.v7.Palette/
Material Design – Drawable Tint 
 Bitmaps as alpha maps 
 android:tint=“@color/blue”
Demo
Android L Major Features 
View and 
Shadows 
 CardView 
 RecyclerView 
 Elevation
CardView 
Wrap any view in a CardView 
https://www.nuget.org/packages Xamarin.Android.Support.v7.CardView/
RecyclerView 
 High speed efficient ListView 
 Includes layout manager for positioning items 
 Default animations for common item operations 
https://www.nuget.org/packages/Xamarin.Android.Support.v7.RecyclerView/
Elevation 
 android:elevation=“2dp” 
 View.SetTranslationZ method 
 Z = elevation + translationZ
Demo
Android L Major Features 
Animations 
 Touch Feedback 
 Reveal 
 Activity Transitions
Animation 
Surface reaction
Animation 
Surface reaction 
Material response
Animation 
Surface reaction 
Material response Radial action
 Default Touch Feedback Animation: 
RippleDrawable 
 Set Background to: 
• ?android:attr/selectableItemBackgro 
und 
• ?android:attr/selectableItemBackgro 
undBorderless 
 Create custom RippleDrawable using 
the ripple element 
Animation – Touch Feedback
Animation – Reveal 
 Easily create 
clipping circles
Animation – Activity Transitions 
 Custom animations for enter and exit transitions 
of activities 
• Enter: How views in the activity enter 
• Exit: How view in activity exit 
• Shared Elements: How views that are shared 
between 2 activities animate
Android L Major Features 
Notifications 
 Lock Screen Notifications 
 Notifications Metadata 
 Unified Notifications
New APIs – Lock Screen Notifications (Android L) 
 Android.App.Notification.Builder.SetVisibility() 
• Private: Shows basic information such as icon, but 
hides full content 
• Public: Show the notification's full content 
• Secret: Show nothing, excluding even the 
notification’s icon
New APIs – Notifications Metadata (Android L) 
 SetCategory(): Tells the system how to handle 
notifications when the device is in Do not Disturb 
 SetPriority(): Set to Max or High to appear in a 
small floating window if the sound also has a vibration 
or sound. 
 AddPerson(): Add a list of people to notification.
Unified Notifications – Standard and Extended
Demo
Android L Major Features 
Compatibility 
& More 
 New APIs 
 Android L Small Features 
 Google Play Services via NuGet
New APIs – Compatibility 
 Material Theme 
• Only available in Android L 
Developer Preview 
o Define theme that inherits from 
older theme (like Holo) in 
res/values/styles.xml 
o Define them with same name that 
inherits from Material in res/values-v21/ 
styles.xml 
o Set theme as your app’s theme in 
manifest file 
 Layouts 
• Do not use any of the new XML attributes from 
Android L Developer Preview, they will not work 
with previous versions of Android. 
• You must provide alternative layouts if you wish 
to use them 
o L Preview Layouts: res/layout-v21/ 
o Alternative Layouts: res/layout/ 
o Do avoid duplication of code, define styles in 
res/values/ 
o Modify the style in res/values-v21/ for new APIs
New APIs – Compatibility 
 UI Widgets 
• Support v7: RecyclerView & CardView 
o Limitations (pre-L Preview): 
o CardView falls back to 
programmatic shadows 
implementation using additional 
padding 
o CardView does not clip its children 
that intersect with rounded corners 
 Animations 
• Following are Android L Developer Preview ONLY: 
o Activity Transitions 
o Touch feedback 
o Reveal animations 
o Path-based animations
Android L Small Features 
 Camera 
• Enhanced image and 
video capturing. Capture 
Raw sensor data. 
 Multi-networking 
• Dynamically scan for 
available network with 
specific capability and 
automatically connect. 
 BLE Peripheral Mode 
• Apps that connect to devices 
such as pedometer or health 
monitor and transfer data to 
another BLE device. 
 Document-Centric Recents 
 Job Scheduler
Google Play Services via NuGet 
 Play Game Services: event –based challenges, saved 
games, and game profiles 
 App Indexing API 
 Google Cast: Media tracks for closed captioning 
 Wallet: Save to Wallet, geo-fenced in-store notifications, 
split tender between wallet & card 
 Analytics: Measure product impressions/product clicks 
 Mobile Ads: in-app purchase ads 
 Dynamic Security Provider
Android Wear
Android Wear – Extending Apps 
 Enhance Existing Apps 
• Support v4 Notification API 
o WearableExtender 
 Inbox Style Cards 
 Voice Input
Android Wear Notifications + Expanded
Android Wear Notifications - Actions
Android Wear – Building Apps 
 Companion App 
• Android app that runs on a wearable 
 New Themes 
 New UI Widgets 
• BoxInsetLayout 
• CircledImageView 
• WearableListView 
• More… 
http://www.nuget.org/packages/Xamarin.Android.Wear/
Android Wear – Sync Data 
 Exposed via Google Play Services 
• Data API 
o Sync datastore between phone and wearable 
 Message API 
o Send small payloads and simple 
o communication 
http://www.nuget.org/packages/Xamarin.GooglePlayServicesJellyBean/
Android Wear – Templates + NuGet 
http://www.nuget.org/packages/Xamarin.Android.Wear/
Demo
Android TV
Android TV Features 
 Made for TV 
• Pre-built fragments for browsing & interacting 
with media catalogs 
 In-App Searching 
• Voice input for searching content 
 Recommendations 
• Suggest content from your app 
 Chromecast Built-in
Android TV ADT-1 Development Kit 
http://developer.android.com/tv/index.html
Android TV + Xamarin 
 Available via NuGet 
• https://www.nuget.org/packages/Xamarin.Android.Support.v17.Leanback 
 Samples: 
• https://github.com/xamarin/monodroid-samples
Android Recap 
• Android L Developer Preview 
• Material Design 
• Views & Animations 
• Notifications 
• Android Wear 
• Notifications & Companion Apps 
• Android TV
Resources 
 Tips for Your First Wear App 
 http://blog.xamarin.com/tips-for-your-first-android-wear-app/ 
 Android L Documentation 
 http://developer.xamarin.com/guides/android/platform_features/android_l/introduc 
tion_to_android_l/ 
 Samples 
 http://developer.xamarin.com/samples/android/
Q & A 
James Montemagno 
Developer Evangelist, Xamarin 
@JamesMontemagno

More Related Content

Viewers also liked

BTG - Raleigh Asia Conference 2013 – Head Office Presentation
BTG - Raleigh Asia Conference 2013 – Head Office PresentationBTG - Raleigh Asia Conference 2013 – Head Office Presentation
BTG - Raleigh Asia Conference 2013 – Head Office Presentationbtgwa
 
BTG - Raleigh Asia Conference 2013 – New Zealend Team Presentation
BTG - Raleigh Asia Conference 2013 – New Zealend Team PresentationBTG - Raleigh Asia Conference 2013 – New Zealend Team Presentation
BTG - Raleigh Asia Conference 2013 – New Zealend Team Presentationbtgwa
 
BTG - Raleigh Asia Conference 2013 – China Team Presentation
BTG - Raleigh Asia Conference 2013 – China Team PresentationBTG - Raleigh Asia Conference 2013 – China Team Presentation
BTG - Raleigh Asia Conference 2013 – China Team Presentationbtgwa
 
Research proporsal by_ana_rodriguez
Research proporsal by_ana_rodriguezResearch proporsal by_ana_rodriguez
Research proporsal by_ana_rodriguezAna Rodriguez
 
ToT presentation For Teens
ToT presentation For Teens ToT presentation For Teens
ToT presentation For Teens adecdr
 
BTG - Raleigh Asia Conference 2013 – Singapore Team Presentation
BTG - Raleigh Asia Conference 2013 – Singapore Team PresentationBTG - Raleigh Asia Conference 2013 – Singapore Team Presentation
BTG - Raleigh Asia Conference 2013 – Singapore Team Presentationbtgwa
 
TechEd Europe 2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudio
TechEd Europe  2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudioTechEd Europe  2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudio
TechEd Europe 2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudioJames Montemagno
 
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...James Montemagno
 
Inventarisasipp 120121074123-phpapp01
Inventarisasipp 120121074123-phpapp01Inventarisasipp 120121074123-phpapp01
Inventarisasipp 120121074123-phpapp01Hadi Joko Sampurno
 
BTG - Raleigh Asia Conference 2013 – Borneo Team Presentation
BTG - Raleigh Asia Conference 2013 – Borneo Team PresentationBTG - Raleigh Asia Conference 2013 – Borneo Team Presentation
BTG - Raleigh Asia Conference 2013 – Borneo Team Presentationbtgwa
 
Introduction to CocosSharp
Introduction to CocosSharpIntroduction to CocosSharp
Introduction to CocosSharpJames Montemagno
 
Dallas Android - Android & iOS Development in C# with Xamarin
Dallas Android - Android & iOS Development in C# with XamarinDallas Android - Android & iOS Development in C# with Xamarin
Dallas Android - Android & iOS Development in C# with XamarinJames Montemagno
 
Developing Your First Android Wear App
Developing Your First Android Wear AppDeveloping Your First Android Wear App
Developing Your First Android Wear AppJames Montemagno
 
Android Lollipop and Material Design
Android Lollipop and Material DesignAndroid Lollipop and Material Design
Android Lollipop and Material DesignJames Montemagno
 

Viewers also liked (15)

BTG - Raleigh Asia Conference 2013 – Head Office Presentation
BTG - Raleigh Asia Conference 2013 – Head Office PresentationBTG - Raleigh Asia Conference 2013 – Head Office Presentation
BTG - Raleigh Asia Conference 2013 – Head Office Presentation
 
BTG - Raleigh Asia Conference 2013 – New Zealend Team Presentation
BTG - Raleigh Asia Conference 2013 – New Zealend Team PresentationBTG - Raleigh Asia Conference 2013 – New Zealend Team Presentation
BTG - Raleigh Asia Conference 2013 – New Zealend Team Presentation
 
BTG - Raleigh Asia Conference 2013 – China Team Presentation
BTG - Raleigh Asia Conference 2013 – China Team PresentationBTG - Raleigh Asia Conference 2013 – China Team Presentation
BTG - Raleigh Asia Conference 2013 – China Team Presentation
 
Research proporsal by_ana_rodriguez
Research proporsal by_ana_rodriguezResearch proporsal by_ana_rodriguez
Research proporsal by_ana_rodriguez
 
ToT presentation For Teens
ToT presentation For Teens ToT presentation For Teens
ToT presentation For Teens
 
BTG - Raleigh Asia Conference 2013 – Singapore Team Presentation
BTG - Raleigh Asia Conference 2013 – Singapore Team PresentationBTG - Raleigh Asia Conference 2013 – Singapore Team Presentation
BTG - Raleigh Asia Conference 2013 – Singapore Team Presentation
 
TechEd Europe 2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudio
TechEd Europe  2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudioTechEd Europe  2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudio
TechEd Europe 2014 DEV-B217 Go Mobile with C#, Xamarin, and Visual STudio
 
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...
TechEd Europ 2014 DEV-B306 Building Multi-Device Applications with Xamarin an...
 
Inventarisasipp 120121074123-phpapp01
Inventarisasipp 120121074123-phpapp01Inventarisasipp 120121074123-phpapp01
Inventarisasipp 120121074123-phpapp01
 
BTG - Raleigh Asia Conference 2013 – Borneo Team Presentation
BTG - Raleigh Asia Conference 2013 – Borneo Team PresentationBTG - Raleigh Asia Conference 2013 – Borneo Team Presentation
BTG - Raleigh Asia Conference 2013 – Borneo Team Presentation
 
Introduction to CocosSharp
Introduction to CocosSharpIntroduction to CocosSharp
Introduction to CocosSharp
 
What's new in C# 6?
What's new in C# 6?What's new in C# 6?
What's new in C# 6?
 
Dallas Android - Android & iOS Development in C# with Xamarin
Dallas Android - Android & iOS Development in C# with XamarinDallas Android - Android & iOS Development in C# with Xamarin
Dallas Android - Android & iOS Development in C# with Xamarin
 
Developing Your First Android Wear App
Developing Your First Android Wear AppDeveloping Your First Android Wear App
Developing Your First Android Wear App
 
Android Lollipop and Material Design
Android Lollipop and Material DesignAndroid Lollipop and Material Design
Android Lollipop and Material Design
 

Similar to Android L and Wear overview

Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptxridzah12
 
Seminar on android app development
Seminar on android app developmentSeminar on android app development
Seminar on android app developmentAbhishekKumar4779
 
Introduction to Android- A session by Sagar Das
Introduction to Android-  A session by Sagar DasIntroduction to Android-  A session by Sagar Das
Introduction to Android- A session by Sagar Dasdscfetju
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programmingPERKYTORIALS
 
Xamarin.Android Introduction
Xamarin.Android IntroductionXamarin.Android Introduction
Xamarin.Android IntroductionGuido Magrin
 
Android Interview Questions
Android Interview QuestionsAndroid Interview Questions
Android Interview QuestionsGaurav Mehta
 
Android deep dive
Android deep diveAndroid deep dive
Android deep diveAnuSahniNCI
 
Mobile application development
Mobile application developmentMobile application development
Mobile application developmentumesh patil
 
Android complete basic Guide
Android complete basic GuideAndroid complete basic Guide
Android complete basic GuideAKASH SINGH
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to androidjavalabsf
 
Mobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfMobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfAbdullahMunir32
 
Basic android development
Basic android developmentBasic android development
Basic android developmentUpanya Singh
 
Basic android development
Basic android developmentBasic android development
Basic android developmentUpanya Singh
 
Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkImam Raza
 
Part 2 android application development 101
Part 2 android application development 101Part 2 android application development 101
Part 2 android application development 101Michael Angelo Rivera
 

Similar to Android L and Wear overview (20)

Introduction to android mobile app development.pptx
Introduction to android mobile app development.pptxIntroduction to android mobile app development.pptx
Introduction to android mobile app development.pptx
 
Android by LAlitha
Android by LAlithaAndroid by LAlitha
Android by LAlitha
 
Seminar on android app development
Seminar on android app developmentSeminar on android app development
Seminar on android app development
 
Android
AndroidAndroid
Android
 
Introduction to Android- A session by Sagar Das
Introduction to Android-  A session by Sagar DasIntroduction to Android-  A session by Sagar Das
Introduction to Android- A session by Sagar Das
 
Getting started with android programming
Getting started with android programmingGetting started with android programming
Getting started with android programming
 
Xamarin.Android Introduction
Xamarin.Android IntroductionXamarin.Android Introduction
Xamarin.Android Introduction
 
Android Interview Questions
Android Interview QuestionsAndroid Interview Questions
Android Interview Questions
 
Android interview questions
Android interview questionsAndroid interview questions
Android interview questions
 
Android deep dive
Android deep diveAndroid deep dive
Android deep dive
 
Mobile application development
Mobile application developmentMobile application development
Mobile application development
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
 
Android complete basic Guide
Android complete basic GuideAndroid complete basic Guide
Android complete basic Guide
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Mobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdfMobile Application Development-Lecture 03 & 04.pdf
Mobile Application Development-Lecture 03 & 04.pdf
 
Basic android development
Basic android developmentBasic android development
Basic android development
 
Basic android development
Basic android developmentBasic android development
Basic android development
 
Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
 
Android - Anroid Pproject
Android - Anroid PprojectAndroid - Anroid Pproject
Android - Anroid Pproject
 
Part 2 android application development 101
Part 2 android application development 101Part 2 android application development 101
Part 2 android application development 101
 

More from James Montemagno

What's new and next for mobile development with .NET
What's new and next for mobile development with .NETWhat's new and next for mobile development with .NET
What's new and next for mobile development with .NETJames Montemagno
 
Taking Mobile Development Serverless with C#
Taking Mobile Development Serverless with C#Taking Mobile Development Serverless with C#
Taking Mobile Development Serverless with C#James Montemagno
 
.NET North UG - What’s new & next for Xamarin developers
.NET North UG - What’s new & next for Xamarin developers.NET North UG - What’s new & next for Xamarin developers
.NET North UG - What’s new & next for Xamarin developersJames Montemagno
 
Building Stream Deck Plugins in C#
Building Stream Deck Plugins in C#Building Stream Deck Plugins in C#
Building Stream Deck Plugins in C#James Montemagno
 
.Net Dev Summit 2020 - What's new and next for Xamarin developers
.Net Dev Summit 2020 - What's new and next for Xamarin developers.Net Dev Summit 2020 - What's new and next for Xamarin developers
.Net Dev Summit 2020 - What's new and next for Xamarin developersJames Montemagno
 
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & More
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & MoreCreating Island Tracker - Xamarin, Azure Functions, Table Storage, & More
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & MoreJames Montemagno
 
Xamarin.forms Shell + Navigation
Xamarin.forms Shell + NavigationXamarin.forms Shell + Navigation
Xamarin.forms Shell + NavigationJames Montemagno
 
Seattle Mobile .NET User Group - Nov. 13th 2019
Seattle Mobile .NET User Group - Nov. 13th 2019Seattle Mobile .NET User Group - Nov. 13th 2019
Seattle Mobile .NET User Group - Nov. 13th 2019James Montemagno
 
Expert Day - What's New, Hot, & Awesome for Xamarin Devs
Expert Day - What's New, Hot, & Awesome for Xamarin DevsExpert Day - What's New, Hot, & Awesome for Xamarin Devs
Expert Day - What's New, Hot, & Awesome for Xamarin DevsJames Montemagno
 
Oxford .NET - Go Mobile with Xamarin
Oxford .NET - Go Mobile with XamarinOxford .NET - Go Mobile with Xamarin
Oxford .NET - Go Mobile with XamarinJames Montemagno
 
Xamarin - New & Awesome + Building Xamarin.Essentials
Xamarin - New & Awesome + Building Xamarin.EssentialsXamarin - New & Awesome + Building Xamarin.Essentials
Xamarin - New & Awesome + Building Xamarin.EssentialsJames Montemagno
 
Zebra App Forum 2019 - Building iOS & Android Apps with Xamarin
Zebra App Forum 2019 - Building iOS & Android Apps with XamarinZebra App Forum 2019 - Building iOS & Android Apps with Xamarin
Zebra App Forum 2019 - Building iOS & Android Apps with XamarinJames Montemagno
 
Stunning Mobile Apps with the Xamarin Visual Design System​
Stunning Mobile Apps with the Xamarin Visual Design System​Stunning Mobile Apps with the Xamarin Visual Design System​
Stunning Mobile Apps with the Xamarin Visual Design System​James Montemagno
 
What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!James Montemagno
 
Introduction to Mobile Development with Xamarin -DotNet Westide
Introduction to Mobile Development with Xamarin -DotNet WestideIntroduction to Mobile Development with Xamarin -DotNet Westide
Introduction to Mobile Development with Xamarin -DotNet WestideJames Montemagno
 
What's New in Xamarin? - Santo Domingo
What's New in Xamarin? - Santo DomingoWhat's New in Xamarin? - Santo Domingo
What's New in Xamarin? - Santo DomingoJames Montemagno
 
Xamarin: The Future of App Development
Xamarin: The Future of App DevelopmentXamarin: The Future of App Development
Xamarin: The Future of App DevelopmentJames Montemagno
 
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP Apps
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP AppsOptimizing and Extending Xamarin.Forms iOS, Android, and UWP Apps
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP AppsJames Montemagno
 
.NET Everywhere and for Everyone
.NET Everywhere and for Everyone.NET Everywhere and for Everyone
.NET Everywhere and for EveryoneJames Montemagno
 
MS Experiences 17 - Xamarin: Future of Mobile Development
MS Experiences 17 - Xamarin: Future of Mobile DevelopmentMS Experiences 17 - Xamarin: Future of Mobile Development
MS Experiences 17 - Xamarin: Future of Mobile DevelopmentJames Montemagno
 

More from James Montemagno (20)

What's new and next for mobile development with .NET
What's new and next for mobile development with .NETWhat's new and next for mobile development with .NET
What's new and next for mobile development with .NET
 
Taking Mobile Development Serverless with C#
Taking Mobile Development Serverless with C#Taking Mobile Development Serverless with C#
Taking Mobile Development Serverless with C#
 
.NET North UG - What’s new & next for Xamarin developers
.NET North UG - What’s new & next for Xamarin developers.NET North UG - What’s new & next for Xamarin developers
.NET North UG - What’s new & next for Xamarin developers
 
Building Stream Deck Plugins in C#
Building Stream Deck Plugins in C#Building Stream Deck Plugins in C#
Building Stream Deck Plugins in C#
 
.Net Dev Summit 2020 - What's new and next for Xamarin developers
.Net Dev Summit 2020 - What's new and next for Xamarin developers.Net Dev Summit 2020 - What's new and next for Xamarin developers
.Net Dev Summit 2020 - What's new and next for Xamarin developers
 
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & More
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & MoreCreating Island Tracker - Xamarin, Azure Functions, Table Storage, & More
Creating Island Tracker - Xamarin, Azure Functions, Table Storage, & More
 
Xamarin.forms Shell + Navigation
Xamarin.forms Shell + NavigationXamarin.forms Shell + Navigation
Xamarin.forms Shell + Navigation
 
Seattle Mobile .NET User Group - Nov. 13th 2019
Seattle Mobile .NET User Group - Nov. 13th 2019Seattle Mobile .NET User Group - Nov. 13th 2019
Seattle Mobile .NET User Group - Nov. 13th 2019
 
Expert Day - What's New, Hot, & Awesome for Xamarin Devs
Expert Day - What's New, Hot, & Awesome for Xamarin DevsExpert Day - What's New, Hot, & Awesome for Xamarin Devs
Expert Day - What's New, Hot, & Awesome for Xamarin Devs
 
Oxford .NET - Go Mobile with Xamarin
Oxford .NET - Go Mobile with XamarinOxford .NET - Go Mobile with Xamarin
Oxford .NET - Go Mobile with Xamarin
 
Xamarin - New & Awesome + Building Xamarin.Essentials
Xamarin - New & Awesome + Building Xamarin.EssentialsXamarin - New & Awesome + Building Xamarin.Essentials
Xamarin - New & Awesome + Building Xamarin.Essentials
 
Zebra App Forum 2019 - Building iOS & Android Apps with Xamarin
Zebra App Forum 2019 - Building iOS & Android Apps with XamarinZebra App Forum 2019 - Building iOS & Android Apps with Xamarin
Zebra App Forum 2019 - Building iOS & Android Apps with Xamarin
 
Stunning Mobile Apps with the Xamarin Visual Design System​
Stunning Mobile Apps with the Xamarin Visual Design System​Stunning Mobile Apps with the Xamarin Visual Design System​
Stunning Mobile Apps with the Xamarin Visual Design System​
 
What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!What's New, Hot, & Awesome for Xamarin Developers!
What's New, Hot, & Awesome for Xamarin Developers!
 
Introduction to Mobile Development with Xamarin -DotNet Westide
Introduction to Mobile Development with Xamarin -DotNet WestideIntroduction to Mobile Development with Xamarin -DotNet Westide
Introduction to Mobile Development with Xamarin -DotNet Westide
 
What's New in Xamarin? - Santo Domingo
What's New in Xamarin? - Santo DomingoWhat's New in Xamarin? - Santo Domingo
What's New in Xamarin? - Santo Domingo
 
Xamarin: The Future of App Development
Xamarin: The Future of App DevelopmentXamarin: The Future of App Development
Xamarin: The Future of App Development
 
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP Apps
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP AppsOptimizing and Extending Xamarin.Forms iOS, Android, and UWP Apps
Optimizing and Extending Xamarin.Forms iOS, Android, and UWP Apps
 
.NET Everywhere and for Everyone
.NET Everywhere and for Everyone.NET Everywhere and for Everyone
.NET Everywhere and for Everyone
 
MS Experiences 17 - Xamarin: Future of Mobile Development
MS Experiences 17 - Xamarin: Future of Mobile DevelopmentMS Experiences 17 - Xamarin: Future of Mobile Development
MS Experiences 17 - Xamarin: Future of Mobile Development
 

Recently uploaded

Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 

Recently uploaded (20)

Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 

Android L and Wear overview

  • 1. Android L and So Much More James Montemagno Developer Evangelist, Xamarin @JamesMontemagno
  • 2. New in Android – Android L Developer Preview – Android Wear – Android TV
  • 4. Android L Major Features  ART Runtime  Material Design  Widgets, Views, and Shadows  Animations  Notifications  Compatibility
  • 5. Android L Major Features ART Runtime  Ahead-of-Time compilation  Improved Garbage Collection  Improved Debugging Support
  • 6. Android L Major Features Material Design Material metaphor Bold, graphic, intentional Motion provides meaning google.com/design/spec/material-design/introduction.html
  • 7.  Brand new style for applications. • Theme.Material • Theme.Material.Light • Theme.Material.Light. DarkActionBar Material Design
  • 8.  colorPrimary – App Branding Color  colorPrimaryDark – Status bar & contextual bars  colorAccent – Theme UI Controls (ie. checkbox) Material Design – Color Palette
  • 9. Material Design – Color Palette
  • 10.  Extract Prominent Colors from Image  6 Palettes Generated Material Design –Palettes Generate a color pallet from an image https://www.nuget.org/packages/Xamarin.Android.Support.v7.Palette/
  • 11. Material Design – Drawable Tint  Bitmaps as alpha maps  android:tint=“@color/blue”
  • 12. Demo
  • 13. Android L Major Features View and Shadows  CardView  RecyclerView  Elevation
  • 14. CardView Wrap any view in a CardView https://www.nuget.org/packages Xamarin.Android.Support.v7.CardView/
  • 15. RecyclerView  High speed efficient ListView  Includes layout manager for positioning items  Default animations for common item operations https://www.nuget.org/packages/Xamarin.Android.Support.v7.RecyclerView/
  • 16. Elevation  android:elevation=“2dp”  View.SetTranslationZ method  Z = elevation + translationZ
  • 17. Demo
  • 18. Android L Major Features Animations  Touch Feedback  Reveal  Activity Transitions
  • 20. Animation Surface reaction Material response
  • 21. Animation Surface reaction Material response Radial action
  • 22.  Default Touch Feedback Animation: RippleDrawable  Set Background to: • ?android:attr/selectableItemBackgro und • ?android:attr/selectableItemBackgro undBorderless  Create custom RippleDrawable using the ripple element Animation – Touch Feedback
  • 23. Animation – Reveal  Easily create clipping circles
  • 24. Animation – Activity Transitions  Custom animations for enter and exit transitions of activities • Enter: How views in the activity enter • Exit: How view in activity exit • Shared Elements: How views that are shared between 2 activities animate
  • 25. Android L Major Features Notifications  Lock Screen Notifications  Notifications Metadata  Unified Notifications
  • 26. New APIs – Lock Screen Notifications (Android L)  Android.App.Notification.Builder.SetVisibility() • Private: Shows basic information such as icon, but hides full content • Public: Show the notification's full content • Secret: Show nothing, excluding even the notification’s icon
  • 27. New APIs – Notifications Metadata (Android L)  SetCategory(): Tells the system how to handle notifications when the device is in Do not Disturb  SetPriority(): Set to Max or High to appear in a small floating window if the sound also has a vibration or sound.  AddPerson(): Add a list of people to notification.
  • 28. Unified Notifications – Standard and Extended
  • 29. Demo
  • 30. Android L Major Features Compatibility & More  New APIs  Android L Small Features  Google Play Services via NuGet
  • 31. New APIs – Compatibility  Material Theme • Only available in Android L Developer Preview o Define theme that inherits from older theme (like Holo) in res/values/styles.xml o Define them with same name that inherits from Material in res/values-v21/ styles.xml o Set theme as your app’s theme in manifest file  Layouts • Do not use any of the new XML attributes from Android L Developer Preview, they will not work with previous versions of Android. • You must provide alternative layouts if you wish to use them o L Preview Layouts: res/layout-v21/ o Alternative Layouts: res/layout/ o Do avoid duplication of code, define styles in res/values/ o Modify the style in res/values-v21/ for new APIs
  • 32. New APIs – Compatibility  UI Widgets • Support v7: RecyclerView & CardView o Limitations (pre-L Preview): o CardView falls back to programmatic shadows implementation using additional padding o CardView does not clip its children that intersect with rounded corners  Animations • Following are Android L Developer Preview ONLY: o Activity Transitions o Touch feedback o Reveal animations o Path-based animations
  • 33. Android L Small Features  Camera • Enhanced image and video capturing. Capture Raw sensor data.  Multi-networking • Dynamically scan for available network with specific capability and automatically connect.  BLE Peripheral Mode • Apps that connect to devices such as pedometer or health monitor and transfer data to another BLE device.  Document-Centric Recents  Job Scheduler
  • 34. Google Play Services via NuGet  Play Game Services: event –based challenges, saved games, and game profiles  App Indexing API  Google Cast: Media tracks for closed captioning  Wallet: Save to Wallet, geo-fenced in-store notifications, split tender between wallet & card  Analytics: Measure product impressions/product clicks  Mobile Ads: in-app purchase ads  Dynamic Security Provider
  • 36. Android Wear – Extending Apps  Enhance Existing Apps • Support v4 Notification API o WearableExtender  Inbox Style Cards  Voice Input
  • 39. Android Wear – Building Apps  Companion App • Android app that runs on a wearable  New Themes  New UI Widgets • BoxInsetLayout • CircledImageView • WearableListView • More… http://www.nuget.org/packages/Xamarin.Android.Wear/
  • 40. Android Wear – Sync Data  Exposed via Google Play Services • Data API o Sync datastore between phone and wearable  Message API o Send small payloads and simple o communication http://www.nuget.org/packages/Xamarin.GooglePlayServicesJellyBean/
  • 41. Android Wear – Templates + NuGet http://www.nuget.org/packages/Xamarin.Android.Wear/
  • 42. Demo
  • 44. Android TV Features  Made for TV • Pre-built fragments for browsing & interacting with media catalogs  In-App Searching • Voice input for searching content  Recommendations • Suggest content from your app  Chromecast Built-in
  • 45. Android TV ADT-1 Development Kit http://developer.android.com/tv/index.html
  • 46. Android TV + Xamarin  Available via NuGet • https://www.nuget.org/packages/Xamarin.Android.Support.v17.Leanback  Samples: • https://github.com/xamarin/monodroid-samples
  • 47. Android Recap • Android L Developer Preview • Material Design • Views & Animations • Notifications • Android Wear • Notifications & Companion Apps • Android TV
  • 48. Resources  Tips for Your First Wear App  http://blog.xamarin.com/tips-for-your-first-android-wear-app/  Android L Documentation  http://developer.xamarin.com/guides/android/platform_features/android_l/introduc tion_to_android_l/  Samples  http://developer.xamarin.com/samples/android/
  • 49. Q & A James Montemagno Developer Evangelist, Xamarin @JamesMontemagno

Editor's Notes

  1. Only available in Android L Developer Preview
  2. You might run into issues with ART if you: -Use JNI to run C/C++ code -Generate non-standard code (like obfuscators) -Use compacting garbage collection techniques
  3. Only available in Android L Developer Preview
  4. Available in Android.Support.v7 library from NuGet
  5. Available in Android.Support.v7 library from NuGet
  6. Available in Android.Support.v7 library from NuGet
  7. Available in Android.Support.v7 library from NuGet
  8. Only available in Android L Developer Preview
  9. Available in Android.Support.v7 library from NuGet
  10. Available in Android.Support.v7 library from NuGet
  11. Available in Android.Support.v7 library from NuGet
  12. Only available in Android L Developer Preview
  13. Available in Android.Support.v7 library from NuGet
  14. Available in Android.Support.v7 library from NuGet
  15. Available in Android.Support.v7 library from NuGet
  16. Only available in Android L Developer Preview
  17. Available in Android.Support.v7 library from NuGet
  18. Available in Android.Support.v7 library from NuGet
  19. Available in Android.Support.v7 library from NuGet
  20. Only available in Android L Developer Preview
  21. Available in Android.Support.v7 library from NuGet
  22. Available in Android.Support.v7 library from NuGet
  23. Available in Android.Support.v7 library from NuGet
  24. Available in Android.Support.v7 library from NuGet
  25. Only available in Android L Developer Preview
  26. Only available in Android L Developer Preview
  27. Only available in Android L Developer Preview
  28. Only available in Android L Developer Preview
  29. Only available in Android L Developer Preview
  30. Only available in Android L Developer Preview
  31. Only available in Android L Developer Preview
  32. Only available in Android L Developer Preview
  33. Only available in Android L Developer Preview
  34. Only available in Android L Developer Preview