Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Android Studio 2 Essentials - Second Edition
Android Studio 2 Essentials - Second Edition

Android Studio 2 Essentials: A fast-paced guide to get you up and running with Android application development using Android Studio 2, Second Edition

By Belén Cruz Zapata
€28.99
Book Jun 2016 172 pages 2nd Edition
eBook
€22.99 €8.99
Print
€28.99
Subscription
€14.99 Monthly
eBook
€22.99 €8.99
Print
€28.99
Subscription
€14.99 Monthly

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Black & white paperback book shipped to your address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now
Table of content icon View table of contents Preview book icon Preview Book

Android Studio 2 Essentials - Second Edition

Chapter 1. Installing and Configuring Android Studio

The new and official Google Integrated Development Environment (IDE) Android Studio 2.0 with all its varied features is ready to be explored. How would you like to make your own Android applications and make these applications available to other users on Google Play Store? Can you do this easily? How can you achieve this?

This chapter will show you how to prepare your new Android Studio installation and help you take your first steps in the new environment. We will begin by preparing the system for the installation and downloading the required files. We will see the welcome screen that prompts when running Android Studio for the first time, and we'll configure the Android Software Development Kit (SDK) properly so that you have everything ready to create your first application.

These are the topics we'll be covering in this chapter:

  • Installing Android Studio

  • Running Android Studio for the first time

  • Configuring the Android SDK

Preparing for installation


A prerequisite to start working with Android Studio is to have Java installed on your system. The system must also be able to find the Java installation. This can be achieved by installing the Java Development Kit (JDK) on your system and then setting an environment variable named JAVA_HOME, which points to the JDK folder in your system. Check this environment variable to avoid issues during the installation of Android Studio.

Downloading Android Studio


The Android Studio package can be downloaded from the Android developer tools web page at http://developer.android.com/sdk/index.html by clicking on the download button, as is shown in the next screenshot. This package will be an EXE file for Windows systems, a DMG file for Mac OS X systems, or a TGZ file for Linux systems:

Installing Android Studio


In Windows, launch the EXE file. The default installation directory is \Users\<your_user_name>\AppData\Local\Android\android-studio. The AppData directory is usually a hidden directory.

In Mac OS X, open the DMG file and drop Android Studio into your Applications folder. The default installation directory is /Applications/Android\ Studio.app.

In Linux systems, unzip the TGZ file and execute the studio.sh script located at the android-studio/bin/ directory.

If you have any problem in the installation process or in the following steps, you can get help about it and the known issues by checking Appendix, Getting Help.

Running Android Studio for the first time


Execute Android Studio and wait until it loads completely. This may take a few minutes the first time. The first time you execute Android Studio, you will be prompted by a welcome screen. As shown in the following screenshot, the welcome screen provides options to start a new project, open a project, import a project, or even perform more advanced actions, such as checking out a project from a version control system or modifying the configuration options:

Let's have a look at the various options available on the welcome screen:

  • Start a new Android Studio project: This creates a new Android project from scratch

  • Open an existing Android Studio project: This opens an existing project

  • Check out project from Version Control: This creates a new project by importing existing sources from a version control system

  • Import project (Eclipse ADT, Gradle, etc.): This creates a new project by importing existing sources from your system

  • Import an Android code sample: This imports a project containing the official Google code samples from GitHub (https://github.com/googlesamples)

The welcome screen, in addition to the main actions, also contains a configuration menu and a help menu, as described in the following:

  • Configure: This opens the configuration menu. The configuration menu has the following options:

    • SDK Manager: This opens the Android SDK tool that will be explained in Chapter 6, Tools.

    • Preferences: This opens the Android Studio preferences.

    • Plugins: This opens the plugins manager for Android Studio.

    • Import Settings: This imports the settings from a file (.jar).

    • Export Settings: This exports the settings to a file (.jar).

    • Settings Repository: This allows you to enter the URL of an external code repository.

    • Check for Update: This checks if there is an Android Studio update available.

    • Project Defaults: This opens the project default settings menu.

    • Settings: This opens the template project settings. These settings are also reachable through the Android Studio settings (Configure | Settings).

    • Project Structure: This opens the project and platform settings.

    • Run Configurations: This opens the run and debug settings.

  • Get Help: This opens the help menu:

    • Help Topics: This opens the Android Studio help, an online version

    • Tips of the Day: This opens a dialog with the tip of the day

    • Default Keymap Reference: This opens an online PDF containing the default keymap

    • Plugin Development: This opens a JetBrains website containing information for plugin developers

Configuring the Android SDK


The essential feature that has to be correctly configured is the Android SDK. Although, Android Studio automatically installs the latest Android SDK available, so you should already have everything you need to create your first application. It is important to check it and learn how we can change it.

In the Android Studio welcome screen, navigate to Configure | Project Defaults | Project Structure. In SDK Location, you should have a selected Android SDK location as shown in the following screenshot. This selected SDK location is the default that will be used in our Android projects; however, we can change it later for specific projects that require special settings.

If you do not have an Android SDK configured in Android Studio, then we have to add it manually.

To accomplish this task, click on the ellipsis (...) button to add an Android SDK and then select the home directory for the SDK. Check whether you have it in your system by navigating to your Android Studio installation directory. You should find a folder named sdk, which contains the Android SDK and its tools. The Android Studio installation directory may be in a hidden folder; so, click on the button highlighted in the following screenshot to Show Hidden Files and Directories:

If you wish to use another Android SDK location that is different from the one included with Android Studio, select this instead. For example, if you previously used the Android Development Tools (ADT) plugin for Eclipse, you already have an Android SDK installation in your system.

Summary


We have successfully prepared the system for Android Studio and installed our Android Studio instance. We ran Android Studio for the first time, and now we know the options available in the welcome screen. You have also learned how to configure our Android SDK and to install it manually, in case you wish to use a different version. Completing these tasks will leave your system with Android Studio running and configured to create your first project.

In the next chapter, you will learn about the concept of a project and how it includes everything the application requires, from classes to libraries. We will create our first project and discuss the different kinds of activities available in the wizard.

Left arrow icon Right arrow icon

Key benefits

  • Configure, build, and run Android projects with Android Studio 2
  • Test your apps using the Android emulator and learn how to manage virtual devices
  • Explore how Android Studio 2 can be made a part of your workflow to reduce the overall development time

Description

Android Studio 2, the official IDE for Android application development, dramatically improves your workflow by letting you quickly see changes running on your device or emulator. It gives developers a unique platform by making app builds and deployment faster. This book will get you up and running with all the essential features of Android Studio 2 to optimize your development workflow. Starting off with the basic installation and configuration of Android Studio 2, this book will help you build a new project by showing you how to create a custom launcher icon and guiding you to choose your project. You will then gain an insight into the additional tools provided in Android Studio, namely the Software Development Kit (SDK) Manager, Android Virtual Device (AVD) Manager, and Javadoc. You’ll also see how to integrate Google Play Services in an Android project. Finally, you’ll become familiar with the Help section in Android Studio, which will enable you to search for support you might require in different scenarios.

What you will learn

[*] Install Android Studio on your system and configure the Android Software Development Kit [*] Create your first project and explore its structure [*] Manage a project in Android Studio 2 with Gradle [*] Improve your productivity while programming by getting the best of the code editor [*] Design the user interface using layouts and see how to handle various user events [*] Integrate Google Play services into your project efficiently [*] Monitor your app while it s running and constantly improve its performance
Estimated delivery fee Deliver to Luxembourg

Premium delivery 7 - 10 business days

€31.95
(Includes tracking information)

Product Details

Country selected

Publication date : Jun 28, 2016
Length 172 pages
Edition : 2nd Edition
Language : English
ISBN-13 : 9781786467959
Vendor :
Google
Category :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Black & white paperback book shipped to your address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now
Estimated delivery fee Deliver to Luxembourg

Premium delivery 7 - 10 business days

€31.95
(Includes tracking information)

Product Details


Publication date : Jun 28, 2016
Length 172 pages
Edition : 2nd Edition
Language : English
ISBN-13 : 9781786467959
Vendor :
Google
Category :

Table of Contents

17 Chapters
Android Studio 2 Essentials Second Edition Chevron down icon Chevron up icon
Credits Chevron down icon Chevron up icon
About the Author Chevron down icon Chevron up icon
About the Reviewer Chevron down icon Chevron up icon
www.PacktPub.com Chevron down icon Chevron up icon
Preface Chevron down icon Chevron up icon
1. Installing and Configuring Android Studio Chevron down icon Chevron up icon
2. Starting a Project Chevron down icon Chevron up icon
3. Navigating a Project Chevron down icon Chevron up icon
4. Using the Code Editor Chevron down icon Chevron up icon
5. Creating User Interfaces Chevron down icon Chevron up icon
6. Tools Chevron down icon Chevron up icon
7. Google Play Services Chevron down icon Chevron up icon
8. Debugging Chevron down icon Chevron up icon
9. Preparing for Release Chevron down icon Chevron up icon
Getting Help Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Top Reviews
No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela