Getting Started with Android Studio Presentation.pdf - Google Drive
Recommend Documents
Walkthrough: Creating a Measurement Studio Application with. Windows Forms
..... Studio Visual Studio 2010, Visual Studio 2008, and Visual Studio 2005.
Walkthrough: Creating a Measurement Studio NI-DAQmx Application .....................
2-39. Walkthrough: ..... This manual documents support for Visual Studio 2010.
Getting Started with. Measurement StudioTM. Support for Visual Studio 2012 and
Visual Studio 2010. Getting Started with Measurement Studio. March 2013.
Sep 25, 2013 ... SAP BusinessObjects Design Studio vs. SAP Business-. Objects Dashboards vs.
BEx Web Application Designer ... 41. 3. Usage Scenarios .
MasteringChemistry for homework significantly increase their scores on final
exams when compared with handwritten homework. As a self-study website: The
Study Area in MasteringChemistry provides you with an array of .... Page 5 .... (
from last ste
Support for Visual Studio 2005 and Visual Studio 2008. Getting ...... Use this
manual as a starting point to learn about Measurement Studio. Refer to the NI ...
MASTERINGTECHNOLOGY. STUDENT EDITION ... The ActivPhysics. OnLine™
library of .... Security Question. Select a security question and enter the answer.
Page 1 ... Getting Started with Talend Open Studio for Data Integration PDF, Read Online Getting Started with Talend Ope
... for foreach in srv users serverpilot apps jujaitaly public index php on line 447. Read Best Book Online Getting Star
This is the complete course for anybody who wants to get to grips with Talend Open Studio for Data Integration From the
... Studio for Data Integration, book pdf Getting Started with Talend Open Studio for ... development environment for cr
Read Best Book Online Getting Started with Talend Open Studio for Data .... business intelligence specialist, system arc
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to op
Sign in. Loading⦠Whoops! There was a problem loading more pages. Retrying... Whoops! There was a problem previewing t
Page 3 of 8. Page 3 of 8. Getting Started with MediaFire.pdf. Getting Started with MediaFire.pdf. Open. Extract. Open wi
... suggestion, the Educators Technology website. Getting Started with Feedly. Getting Started with Feedly Page 3. Page
Page 1 of 24. Getting Started with FLORA. Created by Becky Stern. Last updated on 2016-03-14 06:35:33 PM EDT. Page 1 of
Page 3 of 6. Preparation. Files and Software Needed: Unity with Android Module Enabled. Vuforia Extension for unity. (ht
Getting Started with Apple Classroom.pdf. Getting Started with Apple Classroom.pdf. Open. Extract. Open with. Sign In. M
The treatment for celiac disease is simple: a gluten-free diet. .... other desserts. ....
Our line of Chebe products includes gluten free, oven-ready frozen dough and
gluten free ..... http://www.subway.com/subwayroot/MenuNutrition/Nutrition/pdf/
A
started with Code Composer Studio (CCStudio) IDE. .... Getting Started with
CCStudio Tutorial. 1-7 .... Getting Started with the Visual Linker. 3-10.
This application note is a quick start guide for the AVR®32 Studio. It documents
on ... AVR32 Studio supports all of Atmel's AVR32 32-bit processors. AVR32 ...
Sign in. Page. 1. /. 4. Loading⦠Page 1 of 4. Page 1 of 4. Page 2 of 4. Page 2 of 4. Page 3 of 4. Page 3 of 4. Getting
You will get a notification when a new message arrives. 2. When you receive a
new voice message notification, drag down the notification bar and tap Cellcom ...
Getting Started with Android Studio Presentation.pdf - Google Drive
There was a problem loading more pages. Retrying... Getting Started with Android Studio Presentation.pdf. Getting Starte
Getting Started with Android Studio
Outline:
1. Getting started 2. Familiarizing with the Android Studio workspace and utilities 3. What's missing still? 4. Q&A
Getting Started What's Android Studio? Ans: Android IDE on steroids. Features: - Gradle build + everything in ADT (almost) - Better extensibility in intelliJ means we'll get better tooling in the future Download here -> http://developer.android. com/sdk/installing/studio.html
Getting Started
1. Creating a new Android project 2. Importing an existing Android project 3. build.gradle basics 4. Project Facets
Creating a project from scratch
Will take some time to build...
Manual rebuilds: Build -> Rebuild Project
CTRL+R to run in an emulator (later: edit run configurations)
Importing An Existing Project From Eclipse
Done!
New Project Structure HelloWorld /build/ /libs/ /src/main/java/... /src/main/res/... src/main/AndroidManifest. xml build.gradle THEREFORE...
build.gradle basics - it defines your project ● dependencies (jars, library projects) & scopes (compile, runtime, test, classpath) ● directory structure (source, res, target, etc.) ● Android SDK version (min, target, compile) About the new Android Gradle build -> http: //goo.gl/ZD2fr
Repositories - Uses Maven repos (yay!) - able to specify 3rd party repo repositories { // standard mavenCentral() // 3rd party repo maven { url 'http://google-api-client-libraries.appspot. com/mavenrepo' }
Dependencies (jars) dependencies { compile files('libs/android-support-v4.jar') compile files('libs/jackson-core-2.1.3.jar') } There's a shorthand to include all jars in libs/ (please Google for it)
Android SDK dependencies dependencies { ... compile 'com.google.android.gms:playservices:3.1.36' } Needs: gradle plugin 0.4.2, Google Play Services installed via SDK. Read more here -> http://goo.gl/GF0V8
3rd Party Library Projects - library project must build using Gradle too - settings.gradle must define the project; include ':my_thirdparty_lib_project' dependencies { ... //other deps compile project(':my_thirdparty_lib_project) }
apply-plugin - defines if the project is a regular project or a library project - e.g. ● apply plugin: 'android', OR ● apply plugin: 'android-library'
Project Facets - right click Project -> Open Module Settings
Project Facets
Familiarize with the Android Studio Workspace and UI
Familiarize with the Android Studio Graphical Layout Editor
Familiarize with the Android Studio Graphical Layout Editor - continued
Android Specific Toolbar
1. Run configuration selection 2. Run 3. Debug 4. Attach Debugger 5. IDE settings (not Android Specific) 6. Project Structure (not Android Specific) 7. Synchronize project with Gradle file 8. Android Virtual Device (AVD) Manager 9. SDK Manager 10. Monitor
Editing Run/Debug Configuration
Run/Debug Configuration Dialog
Familiarize with the Android Studio Running on Emulator/Device AVD Manager
Familiarize with the Android Studio Running on Emulator/Device How To Launch The Emulator : Shift + F10 in Windows and Linux or Ctrl + R in OSX
DDMS
Integrated 9patch Drawable Tool Double-click on 9patch files to trigger
What's missing in Android Studio - some project generation wizards - not all UI widgets are present - custom/3rd party UI widgets - A UI for configuring Gradle build settings - UI for creating Android sample projects
Tips and Tricks -Rename refactoring tool, but better. -Code folding -Soft wrapping in editor -Git integration i. easy one file per commit, ii. Ctrl + D command to look at difference of unstaged changes with the commit on the master branch)
Tips and Tricks TODOs and FIXMEs
Tips and Tricks Code Completion
Keyboard Shortcuts Table Eclipse vs IntelliJ Keyboard Shortcuts
Eclipse
Android Studio/IntelliJ
Go to method
Ctrl+O
Ctrl+F12
Content Assist
Ctrl+Space
Ctrl+Space
Open Call Hierarchy
Ctrl+Alt+H
Ctrl+H
Run Android App
Ctrl+F11
Shift+F10
Go to implementation
F3
Ctrl+B
Reformat Code
Ctrl+Shift+F
Ctrl+Alt+L
Rename refactoring
Shift+Alt+R
Shift+F6
Find Usages Optimize Imports
Alt+F7 Ctrl+Shift+O
Ctrl-Alt-O
More IntelliJ Keyboard Shortcuts Just press Ctrl+Shift+A and key in the keyboard shortcuts name to find out more Start being a pro when you know your own tools and be like him...