Android Studio – An Introduction

Step 1 – System Requirements You will be delighted, to know that you can start your Android application development on either of the following operating systems − Microsoft® Windows® 8/7/Vista/2003 (32 or 64-bit). Mac® OS X® 10.8.5 or higher, up to 10.9 (Mavericks) GNOME or KDE desktop Second point is that all the required tools […]

Read More

Creating an Android Project

This lesson teaches you to Create a Project with Android Studio Create a Project with Command Line Tools You should also read Managing Projects An Android project contains all the files that comprise the source code for your Android app. This lesson shows how to create a new project either using Android Studio or using […]

Read More

Project Conventions Coding Standards Java/Android Content

Conventions We follow standard Java coding conventions. We add a few Android specific rules. Package and Import Statements The first non-comment line of most Java source files is a package statement. After that, import statements can follow. For example: package java.awt; import java.awt.peer.CanvasPeer; Order Import Statements The ordering of import statements is: Android imports Imports […]

Read More