All that stands between you and your Android app is your imagination and programming ability. I can't do much to improve your imagination but I can help with the programming side of things.
In this ebook I will show you the fundamentals of Android programming. Not the tips and tricks, but how to think about what is going on - that is the general principles that will make it possible for you to master anything that you encounter that is new in the future.
What do you need to know to get started?
You need to be able to program in a modern object-oriented language. Java would be best as it is the language used to create Android apps but C#, C++, VB or anything similar are close enough in spirit to Java for you to be able to cope. You might well need to look things up about the specifics of particular features of Java but most of the time it should be obvious or obvious with the help of a few comments.
It isn't necessary to be an expert programmer because for a lot of Android programming you are simply using the features and facilities provided - that is a lot of Android programming is just a matter of following the rules.
However if you hope to create something unique and useful you will at some point have to add something of your own - and here creativity and skill are required. So you might not need to be an expert programmer to get started but you need to become one by the time you create your amazing app.
Fortunately practice is a good teacher and so learning to code for Android will actually help you learn to code.
Getting Started
This is a really good time to get started with Android because Google have released Android Studio which is an easy to use Android IDE - Integrated Development Environment.Before this you had to use the Eclipse IDE and setup the SDK and other pieces of software needed. This wasn't difficult but Android Studio makes it easy and it makes programming Android easy. Put simply it is the way of the future and so worth your investment in learning it.
With the release of Android Studio Google has stopped work on the Eclipse addin and this means that Android Studio really is the only way to develop apps from now on.
So to get started.
I'm not going to spend a lot of time explaining how to install Android Studio in a step-by-step way - the Android website does a good job and it is more likely to be up-to-date. It is worth however just going over the basic principles.
First make sure you have the latest Java JDK installed - at least JDK 6.
If you don't have Java installed visit: Java Download
Once you have Java setting up Android Studio is easy:
- Download the Android Studio package from Android Studio Home page.
- Install Android Studio which also installs all of the Android SDK and tools you will need:
Windows:
- Launch the downloaded EXE file,
android-studio-bundle-<version>.exe
. - Follow the setup wizard to install Android Studio.
- Open the downloaded DMG file,
android-studio-bundle-<version>.dmg
. - Drag and drop Android Studio into the Applications folder.
- Unpack the downloaded ZIP file,
android-studio-bundle-<version>.tgz
, into an appropriate location for your applications. - To launch Android Studio, navigate to the
android-studio/bin/
directory in a terminal and executestudio.sh
. You may want to addandroid-studio/bin/
to your PATH environmental variable so that you can start Android Studio from any directory.
- Launch the downloaded EXE file,
On some Windows systems, the launcher script does not find where Java is installed and you will find that you can't run the newly installed Android Studio. It appears to start and then just vanishes.
If you encounter this problem, you need to set an environment variable indicating the correct location of the Java JDK.
Select
Start menu > Computer > System Properties >
Advanced System Properties.
Then open
Advanced tab > Environment Variables,
add new system variable
and setup JAVA_HOME that points to your JDK folder, for example C:\Program Files\Java\jdk1.7.0_21.
There is a second problem that stops some installations working. As well as JAVA_HOME being set to the jdk directory you also need a PATH set to the bin directory. Use the same method of setting the environment variables but select the existing path variable and use the Edit button to add a path to the jdk bin directory, for example ;C:\Program Files\Java\jdk1.7.0_21\bin. Note, you have to use a semicolon separator between each of the directory paths specified as part of the PATH variable.
Now you should be able to run Android Studio. If not the most likely cause of the problem is the JDK and so re-installation is a best first option.
Your First Program
You can opt to start Android Studio after the installation. You will probably not get straight to Android Studio the first time it starts as it downloads updates to itself and to the Android SDK. You just have to be patient.When it finally gets going you will see the Welcome screen:
If you have already created some programs you might well see them listed in Recent projects.
Assuming this is your first project select the Start a new Android Studio project option.
You can ignore the details of the new project for the moment. All you have to do is supply a name for your application - HelloWorld in this case. Accept the other default that Android Studio has filled in for you.
When you click Next you are given the chance to pick what devices you are targeting. Again simply accept the defaults:
No comments:
Post a Comment