際際滷

際際滷Share a Scribd company logo
Material for old
schoolers
Fernado Cejas - Souncloud
aka Cejakas
@fernando_cejas
fernando.cejas@souncloud.com
+FernandoCejas
Jorge J. Barroso - Karumi
aka Flipper83
@flipper83
jorge@karumi.com
+JorgeJBarroso
Material is cool
What happens with old schoolers
What google provides?
com.android.support:appcompat-v7
Themes
ActionBar and ToolBar
Transitions
Widget Tinting
Styling Material
<style name="BaseAppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/theme_default_primary</item>
<item name="colorPrimaryDark">@color/theme_default_primary_dark</item>
<item name="colorAccent">@color/theme_default_accent</item>
<item name="colorControlHighlight">@color/theme_default_accent_light</item>
</style>
Styling Material
values/themes.xml
!
<style name="AppTheme" parent="BaseAppTheme">
</style>
!
values-21/themes.xml
!
<style name="AppTheme" parent="BaseAppTheme">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
</style>
Be careful with some
Samsung devices
Proguard to the rescue!!!
Tint doesnt work on
custom views!!
com.android.support:recyclerview-v7
Bye Bye List view!
Extends from RecyclerAdapter
ViewHolder by default
Layout manager
com.android.support:recyclerview-v7
Change your dividers for
ItemDecoration
com.android.support:recyclerview-v7
Change your headers and footers
for ItemTypes.
com.android.support:recyclerview-v7
OnItemClick doesnt exist any
more, delegate click functionality
to view holders
com.android.support:recyclerview-v7
Add animations with
ItemAnimator, its easy and its
cool.
com.android.support:cardview-v7
com.android.support:palette-v7
Only in compat
Check null
Problems with some images
Toolbar vs ActionBar
ToolBar is a viewGroup
setSupportActionBar();
Extends from ActionBarActivity
Deactivate ActionBar via Theme
VectorDrawable vs Font as icon
You can use icon fonts for reduce
the number of assets on you app.
Keep performance!!! please!!
Transitions
ActivityOptionsCompat options = ActivityOptionsCompat.
makeSceneTransitionAnimation((Activity) context, pairs);
!
!
<style name="AppTheme" parent="BaseAppTheme">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
</style>
Material Design for Old Schoolers
Bibliography
https://developer.android.com/training/material/compatibility.html
http://android-developers.blogspot.de/2014/10/implementing-material-design-in-your.html
http://antonioleiva.com/material-design-everywhere/
http://www.slideshare.net/arueggeberg/material-design-and-backwards-compatibility
https://github.com/navasmdc/MaterialDesignLibrary
https://github.com/markushi/android-ui
https://github.com/flipper83/transition-old-school
Q&A

More Related Content

Similar to Material Design for Old Schoolers (9)

Material in 30 minutes
Material in 30 minutesMaterial in 30 minutes
Material in 30 minutes
Sa炭l D鱈az Gonz叩lez
Android Develpment vol. 3, MFF UK, 2015
Android Develpment vol. 3, MFF UK, 2015Android Develpment vol. 3, MFF UK, 2015
Android Develpment vol. 3, MFF UK, 2015
Tom叩邸 Kypta
Material Design Android - Rodrigo Garcete
Material Design Android - Rodrigo GarceteMaterial Design Android - Rodrigo Garcete
Material Design Android - Rodrigo Garcete
GDGFoz
Android - Values folder
Android - Values folderAndroid - Values folder
Android - Values folder
Maneesha Caldera
09 material design
09 material design09 material design
09 material design
Anuchit Chalothorn
Drupal Themes
Drupal ThemesDrupal Themes
Drupal Themes
akosh
The Themer's Toolkit
The Themer's ToolkitThe Themer's Toolkit
The Themer's Toolkit
Emma Jane Hogbin Westby
Metaprogramming + Ds Ls
Metaprogramming + Ds LsMetaprogramming + Ds Ls
Metaprogramming + Ds Ls
ArrrrCamp
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components
Marc B辰chinger
Android Develpment vol. 3, MFF UK, 2015
Android Develpment vol. 3, MFF UK, 2015Android Develpment vol. 3, MFF UK, 2015
Android Develpment vol. 3, MFF UK, 2015
Tom叩邸 Kypta
Material Design Android - Rodrigo Garcete
Material Design Android - Rodrigo GarceteMaterial Design Android - Rodrigo Garcete
Material Design Android - Rodrigo Garcete
GDGFoz
Android - Values folder
Android - Values folderAndroid - Values folder
Android - Values folder
Maneesha Caldera
Drupal Themes
Drupal ThemesDrupal Themes
Drupal Themes
akosh
Metaprogramming + Ds Ls
Metaprogramming + Ds LsMetaprogramming + Ds Ls
Metaprogramming + Ds Ls
ArrrrCamp
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components
Marc B辰chinger

More from Fernando Cejas (15)

The Mayans Lost Guide to RxJava on Android
The Mayans Lost Guide to RxJava on AndroidThe Mayans Lost Guide to RxJava on Android
The Mayans Lost Guide to RxJava on Android
Fernando Cejas
It is about philosophy: culture of a good programmer
It is about philosophy: culture of a good programmerIt is about philosophy: culture of a good programmer
It is about philosophy: culture of a good programmer
Fernando Cejas
How to Become the MacGyver of Android Custom Views
How to Become the MacGyver of Android Custom ViewsHow to Become the MacGyver of Android Custom Views
How to Become the MacGyver of Android Custom Views
Fernando Cejas
Android UX-UI Design for Fun and Profit
Android UX-UI Design for Fun and ProfitAndroid UX-UI Design for Fun and Profit
Android UX-UI Design for Fun and Profit
Fernando Cejas
How ANDROID TESTING changed how we think about Death - Second Edition
How ANDROID TESTING changed how we think about Death - Second EditionHow ANDROID TESTING changed how we think about Death - Second Edition
How ANDROID TESTING changed how we think about Death - Second Edition
Fernando Cejas
How ANDROID TESTING changed how we think about Death
How ANDROID TESTING changed how we think about DeathHow ANDROID TESTING changed how we think about Death
How ANDROID TESTING changed how we think about Death
Fernando Cejas
Dinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview EvolutionDinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview Evolution
Fernando Cejas
Inside Android Testing
Inside Android TestingInside Android Testing
Inside Android Testing
Fernando Cejas
Webview: The fifth element
Webview: The fifth elementWebview: The fifth element
Webview: The fifth element
Fernando Cejas
Nfc on Android
Nfc on AndroidNfc on Android
Nfc on Android
Fernando Cejas
Android Design Patterns
Android Design PatternsAndroid Design Patterns
Android Design Patterns
Fernando Cejas
Android Cloud To Device Messaging
Android Cloud To Device MessagingAndroid Cloud To Device Messaging
Android Cloud To Device Messaging
Fernando Cejas
Android Quick IntroductionAndroid Quick Introduction
Android Quick Introduction
Fernando Cejas
Desarrollo android    almacenamiento de datosDesarrollo android    almacenamiento de datos
Desarrollo android almacenamiento de datos
Fernando Cejas
Android simple 2d Layout animationAndroid simple 2d Layout animation
Android simple 2d Layout animation
Fernando Cejas
The Mayans Lost Guide to RxJava on Android
The Mayans Lost Guide to RxJava on AndroidThe Mayans Lost Guide to RxJava on Android
The Mayans Lost Guide to RxJava on Android
Fernando Cejas
It is about philosophy: culture of a good programmer
It is about philosophy: culture of a good programmerIt is about philosophy: culture of a good programmer
It is about philosophy: culture of a good programmer
Fernando Cejas
How to Become the MacGyver of Android Custom Views
How to Become the MacGyver of Android Custom ViewsHow to Become the MacGyver of Android Custom Views
How to Become the MacGyver of Android Custom Views
Fernando Cejas
Android UX-UI Design for Fun and Profit
Android UX-UI Design for Fun and ProfitAndroid UX-UI Design for Fun and Profit
Android UX-UI Design for Fun and Profit
Fernando Cejas
How ANDROID TESTING changed how we think about Death - Second Edition
How ANDROID TESTING changed how we think about Death - Second EditionHow ANDROID TESTING changed how we think about Death - Second Edition
How ANDROID TESTING changed how we think about Death - Second Edition
Fernando Cejas
How ANDROID TESTING changed how we think about Death
How ANDROID TESTING changed how we think about DeathHow ANDROID TESTING changed how we think about Death
How ANDROID TESTING changed how we think about Death
Fernando Cejas
Dinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview EvolutionDinosaurs and Androids: The Listview Evolution
Dinosaurs and Androids: The Listview Evolution
Fernando Cejas
Inside Android Testing
Inside Android TestingInside Android Testing
Inside Android Testing
Fernando Cejas
Webview: The fifth element
Webview: The fifth elementWebview: The fifth element
Webview: The fifth element
Fernando Cejas
Android Design Patterns
Android Design PatternsAndroid Design Patterns
Android Design Patterns
Fernando Cejas
Android Cloud To Device Messaging
Android Cloud To Device MessagingAndroid Cloud To Device Messaging
Android Cloud To Device Messaging
Fernando Cejas
Android Quick IntroductionAndroid Quick Introduction
Android Quick Introduction
Fernando Cejas
Desarrollo android    almacenamiento de datosDesarrollo android    almacenamiento de datos
Desarrollo android almacenamiento de datos
Fernando Cejas
Android simple 2d Layout animationAndroid simple 2d Layout animation
Android simple 2d Layout animation
Fernando Cejas

Recently uploaded (20)

MariaDB Galera Cluster webinar 2025 Edition.pdf
MariaDB Galera Cluster webinar  2025 Edition.pdfMariaDB Galera Cluster webinar  2025 Edition.pdf
MariaDB Galera Cluster webinar 2025 Edition.pdf
Sakari Keskitalo
Google Cloud Build - Overview and Examples
Google Cloud Build - Overview and ExamplesGoogle Cloud Build - Overview and Examples
Google Cloud Build - Overview and Examples
Evgenii Studitskikh
Web Development Services by Icubetechnolabs.pdf
Web Development Services by Icubetechnolabs.pdfWeb Development Services by Icubetechnolabs.pdf
Web Development Services by Icubetechnolabs.pdf
ICUBETECHNOLABS
40179_Bednar.ppt Oracle Database Upgrade Assistant
40179_Bednar.ppt Oracle Database Upgrade Assistant40179_Bednar.ppt Oracle Database Upgrade Assistant
40179_Bednar.ppt Oracle Database Upgrade Assistant
herryheryadi1
Happiest MInds - Pimcore PIM Expertise.pdf
Happiest MInds - Pimcore PIM Expertise.pdfHappiest MInds - Pimcore PIM Expertise.pdf
Happiest MInds - Pimcore PIM Expertise.pdf
Happiest Minds Technologies
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptxOOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
habibansar098
ePTW -Permit To Work Software -Tech EHS Solution
ePTW -Permit To Work Software -Tech EHS SolutionePTW -Permit To Work Software -Tech EHS Solution
ePTW -Permit To Work Software -Tech EHS Solution
TECH EHS Solution
Trivium: A Framework For Symbolic Metaprogramming in C++
Trivium: A Framework For Symbolic Metaprogramming in C++Trivium: A Framework For Symbolic Metaprogramming in C++
Trivium: A Framework For Symbolic Metaprogramming in C++
andreasmaniotis
Tightening every bolt at FOSDEM 2025 by Daniel Stenberg
Tightening every bolt at FOSDEM 2025  by Daniel StenbergTightening every bolt at FOSDEM 2025  by Daniel Stenberg
Tightening every bolt at FOSDEM 2025 by Daniel Stenberg
Daniel Stenberg
The Role of Blockchain in Transparent & Secure Procurement.pptx
The Role of Blockchain in Transparent & Secure Procurement.pptxThe Role of Blockchain in Transparent & Secure Procurement.pptx
The Role of Blockchain in Transparent & Secure Procurement.pptx
asmith539880
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
Star Link Communication Pvt Ltd
Data Storytelling for Portfolio Leaders - Webinar
Data Storytelling for Portfolio Leaders - WebinarData Storytelling for Portfolio Leaders - Webinar
Data Storytelling for Portfolio Leaders - Webinar
OnePlan Solutions
Chimera Tool 41.26.2101 Crack License Key Free Download
Chimera Tool 41.26.2101 Crack License Key Free DownloadChimera Tool 41.26.2101 Crack License Key Free Download
Chimera Tool 41.26.2101 Crack License Key Free Download
nasirali027m
Best Solution For Import and Export Contacts from VCF to CSV
Best Solution For Import and Export Contacts from VCF to CSVBest Solution For Import and Export Contacts from VCF to CSV
Best Solution For Import and Export Contacts from VCF to CSV
sung231
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URLProxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
elucidata1
Disaster Recovery in Azure: Architecture and Best Practices
Disaster Recovery in Azure: Architecture and Best PracticesDisaster Recovery in Azure: Architecture and Best Practices
Disaster Recovery in Azure: Architecture and Best Practices
San sri
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Dele Amefo
Shooman_11 Software Reliability (1).pptx
Shooman_11 Software Reliability (1).pptxShooman_11 Software Reliability (1).pptx
Shooman_11 Software Reliability (1).pptx
NAZMUSSAKIBMDADIL200
Agile's History | #Agile #Scrum #AgileHistory
Agile's History | #Agile #Scrum #AgileHistoryAgile's History | #Agile #Scrum #AgileHistory
Agile's History | #Agile #Scrum #AgileHistory
Scott M. Graffius
MariaDB Galera Cluster webinar 2025 Edition.pdf
MariaDB Galera Cluster webinar  2025 Edition.pdfMariaDB Galera Cluster webinar  2025 Edition.pdf
MariaDB Galera Cluster webinar 2025 Edition.pdf
Sakari Keskitalo
Google Cloud Build - Overview and Examples
Google Cloud Build - Overview and ExamplesGoogle Cloud Build - Overview and Examples
Google Cloud Build - Overview and Examples
Evgenii Studitskikh
Web Development Services by Icubetechnolabs.pdf
Web Development Services by Icubetechnolabs.pdfWeb Development Services by Icubetechnolabs.pdf
Web Development Services by Icubetechnolabs.pdf
ICUBETECHNOLABS
40179_Bednar.ppt Oracle Database Upgrade Assistant
40179_Bednar.ppt Oracle Database Upgrade Assistant40179_Bednar.ppt Oracle Database Upgrade Assistant
40179_Bednar.ppt Oracle Database Upgrade Assistant
herryheryadi1
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptxOOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
OOP Introduction.pptxOOP Introduction Part 1 In Java Language.pptx
habibansar098
ePTW -Permit To Work Software -Tech EHS Solution
ePTW -Permit To Work Software -Tech EHS SolutionePTW -Permit To Work Software -Tech EHS Solution
ePTW -Permit To Work Software -Tech EHS Solution
TECH EHS Solution
Trivium: A Framework For Symbolic Metaprogramming in C++
Trivium: A Framework For Symbolic Metaprogramming in C++Trivium: A Framework For Symbolic Metaprogramming in C++
Trivium: A Framework For Symbolic Metaprogramming in C++
andreasmaniotis
Tightening every bolt at FOSDEM 2025 by Daniel Stenberg
Tightening every bolt at FOSDEM 2025  by Daniel StenbergTightening every bolt at FOSDEM 2025  by Daniel Stenberg
Tightening every bolt at FOSDEM 2025 by Daniel Stenberg
Daniel Stenberg
The Role of Blockchain in Transparent & Secure Procurement.pptx
The Role of Blockchain in Transparent & Secure Procurement.pptxThe Role of Blockchain in Transparent & Secure Procurement.pptx
The Role of Blockchain in Transparent & Secure Procurement.pptx
asmith539880
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
How Biometric Attendance Systems Reduce Payroll Fraud & Costs?
Star Link Communication Pvt Ltd
Data Storytelling for Portfolio Leaders - Webinar
Data Storytelling for Portfolio Leaders - WebinarData Storytelling for Portfolio Leaders - Webinar
Data Storytelling for Portfolio Leaders - Webinar
OnePlan Solutions
Chimera Tool 41.26.2101 Crack License Key Free Download
Chimera Tool 41.26.2101 Crack License Key Free DownloadChimera Tool 41.26.2101 Crack License Key Free Download
Chimera Tool 41.26.2101 Crack License Key Free Download
nasirali027m
Best Solution For Import and Export Contacts from VCF to CSV
Best Solution For Import and Export Contacts from VCF to CSVBest Solution For Import and Export Contacts from VCF to CSV
Best Solution For Import and Export Contacts from VCF to CSV
sung231
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URLProxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI - Secure AI APIs in iOS - No SDK, Just Change Your API URL
Proxed.AI
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
Breaking Barriers in the use of Biomedical Data- Multi-modal Data Management....
elucidata1
Disaster Recovery in Azure: Architecture and Best Practices
Disaster Recovery in Azure: Architecture and Best PracticesDisaster Recovery in Azure: Architecture and Best Practices
Disaster Recovery in Azure: Architecture and Best Practices
San sri
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Introducing Agentforce 2.0: The Digital Labor Platform for Building a Limitle...
Dele Amefo
Shooman_11 Software Reliability (1).pptx
Shooman_11 Software Reliability (1).pptxShooman_11 Software Reliability (1).pptx
Shooman_11 Software Reliability (1).pptx
NAZMUSSAKIBMDADIL200
Agile's History | #Agile #Scrum #AgileHistory
Agile's History | #Agile #Scrum #AgileHistoryAgile's History | #Agile #Scrum #AgileHistory
Agile's History | #Agile #Scrum #AgileHistory
Scott M. Graffius

Material Design for Old Schoolers