SlideShare a Scribd company logo
Next Step, Android Studio! 
Federal University of Ceará 
Federal 
University of Ceará 
ÉDIPO DA SILVA SOUZA 
www.ediposouza.com
• Introduction 
• New Concepts 
• Advantages 
• Gradle 
• The Environment 
• Features 
• Productivity 
Federal University of Ceará 
SCHObEjeDtivUoLE
Federal University of Ceará 
Objetivo 
INTRODUCTION 
• Google project 
• Alpha version 0.1 was announced in Google IO 2013 (May/15) 
• Beta version 0.8 was announced in Google IO 2014 (June/25) 
• Actual(Nov/18) beta version is 0.8.14 
• Actual(Nov/18) canary version is 0.9.3 
• Based on JetBrain' IntelliJ IDEA 
• Gradle based build system and dependency manager 
• Free available for Windows, Mac OS X and Linux 
• Support for Java 7 language features
NEW CONCEPTS 
Federal University of Ceará 
Objetivo 
• One Project open at time 
• New project structure 
• Build-in dependency manager 
• Dependency (Eclipse jar files in libs) 
• Modules (Eclipse project library)
Federal University of Ceará 
Objetivo 
ADVANTAGES 
• IntelliJ IDEA is faster and lighter 
• Very stable and does not leak memory forcing constant reboots 
• No need to constantly clean my projects 
• Layout editor tools are vastly improved 
• Live layout let you see the UI preview as you type layout XML 
• UI previews elements and correspondent layout XML tag are synchronized 
• Many news Lint checks 
• Better code complete action 
• Smart Code Completion 
• Integrated console terminal 
• Integrated Version Control more efficient 
• Can use external merging tool
Federal University of Ceará 
Objetivo 
What??? 
GRADLE 
Gradle is a project automation tool used for Android Studio as build system 
and dependency manager. 
Cool, but what is a dependency??? 
Understand how what you know as a library, whether a jar file or a project 
marked as ‘is library’. If you project need external sources, it’s a dependency. 
Without it... 
• We search on google for a jar file, download and put it on libs folder. 
• Push the jar files to our remote repository, making it grow up. 
• Have some painkiller when us taken a project that use a old jar version (what 
we don’t know) and when we put the latest jar version, it broken.
Federal University of Ceará 
Objetivo 
GRADLE 
With it!!! 
• We just need to indicate the package of the dependence we want. 
• We can specify the dependency version or ‘+’ for latest version. 
• Gradle search the dependency, download and configure your project to use it. 
• With scripted build process, we can customize to add new features. 
• Build variants make easy to configure an Internal, Demo, Free, Paid build. 
• Export APKs with the version number in the filename 
• Run a script when your APK is exported like automatically upload the APK to 
TestFlight for internal testing. 
After hate it, you will love it!
THE ENVIRONMENT 
Federal University of Ceará
THE ENVIRONMENT 
Federal University of Ceará
Federal University of Ceará 
Objetivo 
Better Project Wizard 
• Steps better distributed. 
• Helper for choose the 
Minimum/Maximum SDK level. 
• Many Templates. 
• Better Template configuration. 
FEATURES 
Source: http://tools.android.com/recent/androidstudio061released
Federal University of Ceará 
Objetivo 
FEATURES 
Android Project View 
• Groups the build files for all modules at the 
top level of the project hierarchy. 
• Shows the most important source directories 
at the top level of the module hierarchy. 
• Groups all the manifest files for each module. 
• Shows resource files from all Gradle source 
sets. 
• Groups resource files for different locales, 
orientations, and screen types in a single 
group per resource type. 
Source: http://developer.android.com/sdk/installing/studio-androidview.html
Federal University of Ceará 
Objetivo 
FEATURES 
New Layout Editor 
• You can edit the XML layout and see the 
preview at same time. 
• Synchronized XML Tag and layout selection. 
• Resource inlining like strings and dimens. 
• Multi layout and real time preview based in 
many device configuration (Language, RTL, 
Android version, Screen Size, SDK version). 
• Save screenshot from Layout editor preview. 
• Support for xliff strings in Layout Rendering. 
Source: http://tools.android.com/recent/androidstudiobetareleased
Federal University of Ceará 
Objetivo 
Designtime Layout Attributes 
You can edit the XML layout and see the preview at same time. 
• text 
• visibility 
• listitem 
• listheader 
• listfooter 
• menu 
• actionBarNavMode 
• fastScrollAlwaysVisible 
FEATURES 
More info: http://tools.android.com/tech-docs/tools-attributes Source: http://tools.android.com/tips/layout-designtime-attributes
Federal University of Ceará 
Objetivo 
FEATURES 
Enhanced Code Editor 
• Instant Completion 
• Context-aware Completion 
• Smart code completion search 
• Multi-language Refactorings 
• Drawable preview in code editor 
• Color preview in code editor 
• Code visualization simplified 
• Resource inline 
More info: 
● http://www.jetbrains.com/idea/features/refactoring.html 
● http://www.jetbrains.com/idea/features/code_completion.html 
● http://jetbrains.dzone.com/articles/top-20-code-completions-in-intellij-idea 
Source: http://tools.android.com/recent/androidstudio044released
Federal University of Ceará 
Objetivo 
New AVD Manager 
• Wizard for AVD creation. 
• More integrated to IDE. 
• Easy to create a new AVD 
base on existence hardware. 
• Differents device category. 
FEATURES 
Source: http://tools.android.com/recent/androidstudio0812released
Federal University of Ceará 
Objetivo 
FEATURES 
Library Dependency Editor 
• More easy than just type the package. 
• Easy search for the library package. 
• Google libraries. 
• Most commonly requested libraries. 
Source: http://tools.android.com/recent/androidstudio045released
Federal University of Ceará 
Objetivo 
Translate Editor 
• Multi language at same time. 
• Check untranslated strings. 
• Quick Inline edit. 
• Open it with right click on a file 
named "strings.xml". 
FEATURES 
Source: http://tools.android.com/recent/androidstudio087released
Federal University of Ceará 
Objetivo 
FEATURES 
• Integrated terminal console 
• Integrated Version control 
• Build variants 
• Live updated with small patch 
• Screen record feature in DDMS 
• Drawable preview in code editor (Shapes, Colors, Menus). 
• Bitmap rendering in the debugger 
• New memory monitor 
• Code Checker 
• Copyright manager 
• Auto import
Federal University of Ceará 
Objetivo 
PRODUCTIVITY 
List keyboard shortcuts for common operations. 
Source: http://developer.android.com/sdk/installing/studio-tips.html
Federal University of Ceará 
PRODOUbjeCtivToIVITY 
Source: http://developer.android.com/sdk/installing/studio-tips.html
Federal University of Ceará 
Objetivo 
PRODUCTIVITY 
Mac OSX Windows/Linux Eclipse (Windows) equivalent Description 
● Cmd+ ← Ctrl+Y Ctrl+D Delete line 
● Cmd+Shift+ ← Ctrl+shift+ ← - Last edit location 
● Cmd+Option+V Ctrl+Alt+V Alt+Shift+L Extract variable 
● Cmd+Option+F Ctrl+Alt+F - Extract Field 
● Cmd+Option+C Ctrl+Alt+C - Extract constant 
● Cmd+Option+P Ctrl+Alt+P - Extract param 
● Cmd+Option+M Ctrl+Alt+M Alt+Shift+M Extract Method 
● Cmd+Option+T Ctrl+Alt+T Alt+Shift+Z Surround with 
● Cmd+Option+/ Ctrl+Shift+/ Ctrl+Shift+/ Block Comment 
● Cmd+/ Ctrl+/ Ctrl+Shift+C Inline Comment 
● Cmd+P Ctrl+P Ctrl+Shift+Space Show method params 
● Cmd+1 Alt+1 Alt+Shift+Q, P Show/hide Project view 
● Cmd+ + Ctrl+ + - Expand block 
● Cmd+ - Ctrl+ - - Contract block 
● Cmd+J Ctrl+J - Live template
Federal University of Ceará 
Objetivo 
PRODUCTIVITY 
Mac OSX Windows/Linux Eclipse (Windows) equivalent Description 
● Cmd+K Ctrl+K Ctrl+# Commit vcs changes 
● Cmd+T Ctrl+T - Update vcs changes 
● Ctrl+V Ctrl+ ` - Version Control popup 
● Ctrl+Enter Alt+Insert Ctrl+Shift+S Generate popup 
● Ctrl+Tab Ctrl+Tab - Next tab 
● Ctrl+Shift+Tab Ctrl+Shift+Tab - Previous tab 
● Ctrl+R Shift+F10 Ctrl+F11 Run app 
● Ctrl+D Shift+F9 F11 Debug app 
● Ctrl+O Ctrl+O - Override method 
● Ctrl+Up Alt+Up Ctrl+Shift+Up Navigate next method 
● Ctrl+Down Alt+Down Ctrl+Shift+Down Navigate previous method 
● Crtl+Option+O Ctrl+Alt+O Ctrl+Shift+O Organize imports 
● Option+Space Ctrl+Shift+I - Quick definition 
● Option+Enter Alt+Enter Ctrl+1 Quick Fix 
● Shift+F6 Shift+F6 Alt+Shift+R Rename refactoring
Federal University of Ceará 
Objetivo 
PRODUCTIVITY 
Android Studio have many many keyboard shortcuts, to learn some of the most useful, check the Philippe 
Breault work on Google+ and his blog. 
• https://plus.google.com/u/0/+PhilippeBreault/posts 
• https://github.com/pavlospt/Android-Studio-Tips-by-Philippe-Breault/wiki 
• http://www.developerphil.com/android-studio-tips-of-the-day-roundup-1/ 
• http://www.developerphil.com/android-studio-tips-of-the-day-roundup-2/
Federal University of Ceará 
Thank you!!! 
Contact: 
edipo2s@gmail.com 
More info: 
http://ediposouza.com/iniciando-com-o-android-studio?lang=en

More Related Content

What's hot (20)

PPTX
Introduction to android studio 2.0 and data binding library
Kaushal Dhruw
 
PPT
9780134433646 annuzzi ch02 (1)
Peter Mburu
 
PDF
Utilizando Espresso e UIAutomator no Teste de Apps Android
Eduardo Carrara de Araujo
 
PPTX
Android development session 5 - Debug android studio
Farabi Technology Middle East
 
PDF
Android studio
Željko Plesac
 
PDF
Android Development: Build Android App from Scratch
Taufan Erfiyanto
 
PPTX
Creating the first app with android studio
Parinita03
 
PPT
android training_material ravy ramio
slesulvy
 
PDF
Automated Historical Performance Analysis with kmemtracer
Kyungmin Lee
 
PDF
Android Development Tutorial V3
Diego Torres Milano
 
PPTX
Eclipse & android setup
China Bigs
 
PPTX
Introduction to android coding
Hari Krishna
 
PDF
Introduction to Android Studio
Michael Pan
 
PDF
Android dev o_auth
fantasy zheng
 
PDF
Day1 before getting_started
Ahsanul Karim
 
PDF
Android Lab
Leo Nguyen
 
PPT
Android studio 2.0: default project structure
Vyara Georgieva
 
PPTX
What's new in android jakarta gdg (2015-08-26)
Google
 
PPTX
Introduction_to_android_and_android_studio
Abdul Basit
 
PPTX
Android development beginners faq
Khirulnizam Abd Rahman
 
Introduction to android studio 2.0 and data binding library
Kaushal Dhruw
 
9780134433646 annuzzi ch02 (1)
Peter Mburu
 
Utilizando Espresso e UIAutomator no Teste de Apps Android
Eduardo Carrara de Araujo
 
Android development session 5 - Debug android studio
Farabi Technology Middle East
 
Android studio
Željko Plesac
 
Android Development: Build Android App from Scratch
Taufan Erfiyanto
 
Creating the first app with android studio
Parinita03
 
android training_material ravy ramio
slesulvy
 
Automated Historical Performance Analysis with kmemtracer
Kyungmin Lee
 
Android Development Tutorial V3
Diego Torres Milano
 
Eclipse & android setup
China Bigs
 
Introduction to android coding
Hari Krishna
 
Introduction to Android Studio
Michael Pan
 
Android dev o_auth
fantasy zheng
 
Day1 before getting_started
Ahsanul Karim
 
Android Lab
Leo Nguyen
 
Android studio 2.0: default project structure
Vyara Georgieva
 
What's new in android jakarta gdg (2015-08-26)
Google
 
Introduction_to_android_and_android_studio
Abdul Basit
 
Android development beginners faq
Khirulnizam Abd Rahman
 

Similar to Next Step, Android Studio! (20)

PPTX
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
Stefan Martynkiw
 
PDF
Head first android apps dev tools
Shaka Huang
 
PPTX
Introduction to Android- A session by Sagar Das
dscfetju
 
PPTX
Gradle,the new build system for android
zhang ghui
 
PPTX
Build your android app with gradle
Swain Loda
 
PDF
Android Development Primer - GDG Los Angeles
Gerard
 
PPTX
Exploring the power of Gradle in android studio - Basics & Beyond
Kaushal Dhruw
 
PDF
Angular mobile angular_u
Doris Chen
 
PDF
Apache Cordova
Ivano Malavolta
 
PPTX
Dojo javascript toolkit
Predhin Sapru
 
PPTX
(WPF + WinForms) * .NET Core = Modern Desktop
Claire Novotny
 
PDF
Apache Cordova 4.x
Ivano Malavolta
 
PDF
Cordova: APIs and instruments
Ivano Malavolta
 
PDF
Matteo Gazzurelli - Andorid introduction - Google Dev Fest 2013
DuckMa
 
PPTX
Developing for Android-Types of Android Application
Nandini Prabhu
 
PPT
Android development orientation for starters v4 seminar
Joemarie Amparo
 
PDF
Android app development by abhi android
susijanny
 
PPTX
Android app development
Abhishek Saini
 
PDF
[2015/2016] Apache Cordova
Ivano Malavolta
 
PDF
Writing Android Libraries
emanuelez
 
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
Stefan Martynkiw
 
Head first android apps dev tools
Shaka Huang
 
Introduction to Android- A session by Sagar Das
dscfetju
 
Gradle,the new build system for android
zhang ghui
 
Build your android app with gradle
Swain Loda
 
Android Development Primer - GDG Los Angeles
Gerard
 
Exploring the power of Gradle in android studio - Basics & Beyond
Kaushal Dhruw
 
Angular mobile angular_u
Doris Chen
 
Apache Cordova
Ivano Malavolta
 
Dojo javascript toolkit
Predhin Sapru
 
(WPF + WinForms) * .NET Core = Modern Desktop
Claire Novotny
 
Apache Cordova 4.x
Ivano Malavolta
 
Cordova: APIs and instruments
Ivano Malavolta
 
Matteo Gazzurelli - Andorid introduction - Google Dev Fest 2013
DuckMa
 
Developing for Android-Types of Android Application
Nandini Prabhu
 
Android development orientation for starters v4 seminar
Joemarie Amparo
 
Android app development by abhi android
susijanny
 
Android app development
Abhishek Saini
 
[2015/2016] Apache Cordova
Ivano Malavolta
 
Writing Android Libraries
emanuelez
 
Ad

More from Édipo Souza (11)

PDF
Estudo comparativo das linguagens kotlin e java no desenvolvimento de aplicac...
Édipo Souza
 
PPTX
Android studio build variants
Édipo Souza
 
PDF
Introdução a Plataforma Android
Édipo Souza
 
PPTX
Apresentação de minha Monografia do curso de Sistema e Mídias Digitais
Édipo Souza
 
PDF
UMA ANÁLISE COMPARATIVA DE FERRAMENTAS DE DESENVOLVIMENTO MULTIPLATAFORMA PAR...
Édipo Souza
 
PPTX
Android - Frameworks de Testes
Édipo Souza
 
PPTX
Android - Frameworks para Gráficos
Édipo Souza
 
PPTX
Logging Patterns & Anti-Patterns
Édipo Souza
 
PPTX
Android - Frameworks de Persistência
Édipo Souza
 
PPTX
Framework MVC - vRaptor
Édipo Souza
 
PDF
XP - eXtreme Programming
Édipo Souza
 
Estudo comparativo das linguagens kotlin e java no desenvolvimento de aplicac...
Édipo Souza
 
Android studio build variants
Édipo Souza
 
Introdução a Plataforma Android
Édipo Souza
 
Apresentação de minha Monografia do curso de Sistema e Mídias Digitais
Édipo Souza
 
UMA ANÁLISE COMPARATIVA DE FERRAMENTAS DE DESENVOLVIMENTO MULTIPLATAFORMA PAR...
Édipo Souza
 
Android - Frameworks de Testes
Édipo Souza
 
Android - Frameworks para Gráficos
Édipo Souza
 
Logging Patterns & Anti-Patterns
Édipo Souza
 
Android - Frameworks de Persistência
Édipo Souza
 
Framework MVC - vRaptor
Édipo Souza
 
XP - eXtreme Programming
Édipo Souza
 
Ad

Recently uploaded (15)

PPTX
some leadership theories MBA management.pptx
rkseo19
 
PPTX
AI presentation for everyone in every fields
dodinhkhai1
 
PDF
The Family Secret (essence of loveliness)
Favour Biodun
 
PPTX
Pastor Bob Stewart Acts 21 07 09 2025.pptx
FamilyWorshipCenterD
 
PPTX
Inspired by VeinSense: Supercharge Your Hackathon with Agentic AI
ShubhamSharma2528
 
PPTX
2025-07-13 Abraham 07 (shared slides).pptx
Dale Wells
 
PDF
Generalization predition MOOCs - Conference presentation - eMOOCs 2025
pmmorenom01
 
PPTX
Presentationexpressions You are student leader and have just come from a stud...
BENSTARBEATZ
 
PDF
The Impact of Game Live Streaming on In-Game Purchases of Chinese Young Game ...
Shibaura Institute of Technology
 
PPTX
STURGEON BAY WI AG PPT JULY 6 2025.pptx
FamilyWorshipCenterD
 
PPTX
presentation on legal and regulatory action
raoharsh4122001
 
PDF
Leveraging the Power of Jira Dashboard.pdf
siddharthshukla742740
 
PPTX
Food_and_Drink_Bahasa_Inggris_Kelas_5.pptx
debbystevani36
 
PDF
Cloud Computing Service Availability.pdf
chakrirocky1
 
PPTX
BARRIERS TO EFFECTIVE COMMUNICATION.pptx
shraddham25
 
some leadership theories MBA management.pptx
rkseo19
 
AI presentation for everyone in every fields
dodinhkhai1
 
The Family Secret (essence of loveliness)
Favour Biodun
 
Pastor Bob Stewart Acts 21 07 09 2025.pptx
FamilyWorshipCenterD
 
Inspired by VeinSense: Supercharge Your Hackathon with Agentic AI
ShubhamSharma2528
 
2025-07-13 Abraham 07 (shared slides).pptx
Dale Wells
 
Generalization predition MOOCs - Conference presentation - eMOOCs 2025
pmmorenom01
 
Presentationexpressions You are student leader and have just come from a stud...
BENSTARBEATZ
 
The Impact of Game Live Streaming on In-Game Purchases of Chinese Young Game ...
Shibaura Institute of Technology
 
STURGEON BAY WI AG PPT JULY 6 2025.pptx
FamilyWorshipCenterD
 
presentation on legal and regulatory action
raoharsh4122001
 
Leveraging the Power of Jira Dashboard.pdf
siddharthshukla742740
 
Food_and_Drink_Bahasa_Inggris_Kelas_5.pptx
debbystevani36
 
Cloud Computing Service Availability.pdf
chakrirocky1
 
BARRIERS TO EFFECTIVE COMMUNICATION.pptx
shraddham25
 

Next Step, Android Studio!

  • 1. Next Step, Android Studio! Federal University of Ceará Federal University of Ceará ÉDIPO DA SILVA SOUZA www.ediposouza.com
  • 2. • Introduction • New Concepts • Advantages • Gradle • The Environment • Features • Productivity Federal University of Ceará SCHObEjeDtivUoLE
  • 3. Federal University of Ceará Objetivo INTRODUCTION • Google project • Alpha version 0.1 was announced in Google IO 2013 (May/15) • Beta version 0.8 was announced in Google IO 2014 (June/25) • Actual(Nov/18) beta version is 0.8.14 • Actual(Nov/18) canary version is 0.9.3 • Based on JetBrain' IntelliJ IDEA • Gradle based build system and dependency manager • Free available for Windows, Mac OS X and Linux • Support for Java 7 language features
  • 4. NEW CONCEPTS Federal University of Ceará Objetivo • One Project open at time • New project structure • Build-in dependency manager • Dependency (Eclipse jar files in libs) • Modules (Eclipse project library)
  • 5. Federal University of Ceará Objetivo ADVANTAGES • IntelliJ IDEA is faster and lighter • Very stable and does not leak memory forcing constant reboots • No need to constantly clean my projects • Layout editor tools are vastly improved • Live layout let you see the UI preview as you type layout XML • UI previews elements and correspondent layout XML tag are synchronized • Many news Lint checks • Better code complete action • Smart Code Completion • Integrated console terminal • Integrated Version Control more efficient • Can use external merging tool
  • 6. Federal University of Ceará Objetivo What??? GRADLE Gradle is a project automation tool used for Android Studio as build system and dependency manager. Cool, but what is a dependency??? Understand how what you know as a library, whether a jar file or a project marked as ‘is library’. If you project need external sources, it’s a dependency. Without it... • We search on google for a jar file, download and put it on libs folder. • Push the jar files to our remote repository, making it grow up. • Have some painkiller when us taken a project that use a old jar version (what we don’t know) and when we put the latest jar version, it broken.
  • 7. Federal University of Ceará Objetivo GRADLE With it!!! • We just need to indicate the package of the dependence we want. • We can specify the dependency version or ‘+’ for latest version. • Gradle search the dependency, download and configure your project to use it. • With scripted build process, we can customize to add new features. • Build variants make easy to configure an Internal, Demo, Free, Paid build. • Export APKs with the version number in the filename • Run a script when your APK is exported like automatically upload the APK to TestFlight for internal testing. After hate it, you will love it!
  • 8. THE ENVIRONMENT Federal University of Ceará
  • 9. THE ENVIRONMENT Federal University of Ceará
  • 10. Federal University of Ceará Objetivo Better Project Wizard • Steps better distributed. • Helper for choose the Minimum/Maximum SDK level. • Many Templates. • Better Template configuration. FEATURES Source: http://tools.android.com/recent/androidstudio061released
  • 11. Federal University of Ceará Objetivo FEATURES Android Project View • Groups the build files for all modules at the top level of the project hierarchy. • Shows the most important source directories at the top level of the module hierarchy. • Groups all the manifest files for each module. • Shows resource files from all Gradle source sets. • Groups resource files for different locales, orientations, and screen types in a single group per resource type. Source: http://developer.android.com/sdk/installing/studio-androidview.html
  • 12. Federal University of Ceará Objetivo FEATURES New Layout Editor • You can edit the XML layout and see the preview at same time. • Synchronized XML Tag and layout selection. • Resource inlining like strings and dimens. • Multi layout and real time preview based in many device configuration (Language, RTL, Android version, Screen Size, SDK version). • Save screenshot from Layout editor preview. • Support for xliff strings in Layout Rendering. Source: http://tools.android.com/recent/androidstudiobetareleased
  • 13. Federal University of Ceará Objetivo Designtime Layout Attributes You can edit the XML layout and see the preview at same time. • text • visibility • listitem • listheader • listfooter • menu • actionBarNavMode • fastScrollAlwaysVisible FEATURES More info: http://tools.android.com/tech-docs/tools-attributes Source: http://tools.android.com/tips/layout-designtime-attributes
  • 14. Federal University of Ceará Objetivo FEATURES Enhanced Code Editor • Instant Completion • Context-aware Completion • Smart code completion search • Multi-language Refactorings • Drawable preview in code editor • Color preview in code editor • Code visualization simplified • Resource inline More info: ● http://www.jetbrains.com/idea/features/refactoring.html ● http://www.jetbrains.com/idea/features/code_completion.html ● http://jetbrains.dzone.com/articles/top-20-code-completions-in-intellij-idea Source: http://tools.android.com/recent/androidstudio044released
  • 15. Federal University of Ceará Objetivo New AVD Manager • Wizard for AVD creation. • More integrated to IDE. • Easy to create a new AVD base on existence hardware. • Differents device category. FEATURES Source: http://tools.android.com/recent/androidstudio0812released
  • 16. Federal University of Ceará Objetivo FEATURES Library Dependency Editor • More easy than just type the package. • Easy search for the library package. • Google libraries. • Most commonly requested libraries. Source: http://tools.android.com/recent/androidstudio045released
  • 17. Federal University of Ceará Objetivo Translate Editor • Multi language at same time. • Check untranslated strings. • Quick Inline edit. • Open it with right click on a file named "strings.xml". FEATURES Source: http://tools.android.com/recent/androidstudio087released
  • 18. Federal University of Ceará Objetivo FEATURES • Integrated terminal console • Integrated Version control • Build variants • Live updated with small patch • Screen record feature in DDMS • Drawable preview in code editor (Shapes, Colors, Menus). • Bitmap rendering in the debugger • New memory monitor • Code Checker • Copyright manager • Auto import
  • 19. Federal University of Ceará Objetivo PRODUCTIVITY List keyboard shortcuts for common operations. Source: http://developer.android.com/sdk/installing/studio-tips.html
  • 20. Federal University of Ceará PRODOUbjeCtivToIVITY Source: http://developer.android.com/sdk/installing/studio-tips.html
  • 21. Federal University of Ceará Objetivo PRODUCTIVITY Mac OSX Windows/Linux Eclipse (Windows) equivalent Description ● Cmd+ ← Ctrl+Y Ctrl+D Delete line ● Cmd+Shift+ ← Ctrl+shift+ ← - Last edit location ● Cmd+Option+V Ctrl+Alt+V Alt+Shift+L Extract variable ● Cmd+Option+F Ctrl+Alt+F - Extract Field ● Cmd+Option+C Ctrl+Alt+C - Extract constant ● Cmd+Option+P Ctrl+Alt+P - Extract param ● Cmd+Option+M Ctrl+Alt+M Alt+Shift+M Extract Method ● Cmd+Option+T Ctrl+Alt+T Alt+Shift+Z Surround with ● Cmd+Option+/ Ctrl+Shift+/ Ctrl+Shift+/ Block Comment ● Cmd+/ Ctrl+/ Ctrl+Shift+C Inline Comment ● Cmd+P Ctrl+P Ctrl+Shift+Space Show method params ● Cmd+1 Alt+1 Alt+Shift+Q, P Show/hide Project view ● Cmd+ + Ctrl+ + - Expand block ● Cmd+ - Ctrl+ - - Contract block ● Cmd+J Ctrl+J - Live template
  • 22. Federal University of Ceará Objetivo PRODUCTIVITY Mac OSX Windows/Linux Eclipse (Windows) equivalent Description ● Cmd+K Ctrl+K Ctrl+# Commit vcs changes ● Cmd+T Ctrl+T - Update vcs changes ● Ctrl+V Ctrl+ ` - Version Control popup ● Ctrl+Enter Alt+Insert Ctrl+Shift+S Generate popup ● Ctrl+Tab Ctrl+Tab - Next tab ● Ctrl+Shift+Tab Ctrl+Shift+Tab - Previous tab ● Ctrl+R Shift+F10 Ctrl+F11 Run app ● Ctrl+D Shift+F9 F11 Debug app ● Ctrl+O Ctrl+O - Override method ● Ctrl+Up Alt+Up Ctrl+Shift+Up Navigate next method ● Ctrl+Down Alt+Down Ctrl+Shift+Down Navigate previous method ● Crtl+Option+O Ctrl+Alt+O Ctrl+Shift+O Organize imports ● Option+Space Ctrl+Shift+I - Quick definition ● Option+Enter Alt+Enter Ctrl+1 Quick Fix ● Shift+F6 Shift+F6 Alt+Shift+R Rename refactoring
  • 23. Federal University of Ceará Objetivo PRODUCTIVITY Android Studio have many many keyboard shortcuts, to learn some of the most useful, check the Philippe Breault work on Google+ and his blog. • https://plus.google.com/u/0/+PhilippeBreault/posts • https://github.com/pavlospt/Android-Studio-Tips-by-Philippe-Breault/wiki • http://www.developerphil.com/android-studio-tips-of-the-day-roundup-1/ • http://www.developerphil.com/android-studio-tips-of-the-day-roundup-2/
  • 24. Federal University of Ceará Thank you!!! Contact: [email protected] More info: http://ediposouza.com/iniciando-com-o-android-studio?lang=en