Android SDK: Asynchronous HTTP Requests

Communication with scripts outside of your application usually require HTTP or similar methods, these types of requests however, put a hold on the rest of your application until they complete the task at hand sometimes even causing your application to freeze if not handled properly. In this tutorial you will to learn to handle tasks in the background so that your application is runs as smoothly as possible.

Android SDK: Options Menu Tutorial

Want to add more buttons to your app but don't know where to put them? Perhaps you should make an options menu. This tutorial will guide you step by step to create one.

How To Switch Activities in Android

One of Android's main components are activities. In this tutorial you will learn how to create more than one activity and how to tell your application to move between activities.