Devices

Welcome to the latest Android One baby : Lava Pixel V1 for India !

Google continues its efforts with Android One to deliver high quality device to low price. Android One family welcomes a new baby called Lava Pixel V1 available for India. This new device comes with Android Lollipop, the latest and the fastest version of Android. Google ensures also that devices part of Android One program will get automatically new version just…
Continue Reading
Java

Easiest way to create a built-in Java HTTP Server

Introduced in JDK , package enables implementation of embedded HTTP servers. Oracle official Javadoc tells the following : "Provides a simple high-level HTTP server API, which can be used to build embedded HTTP servers". However, it’s important to consider that * packages are not part of the supported, public interface and may even disappear in upcoming Java releases. There is…
Continue Reading
Android

ADB Survival Guide for Android

Android Debug Brigde (ADB) is a command line tool, coming with Android SDK provided by Google, that lets developers to communicate with an emulator or a connected Android device directly from the command line. To find adb tool, you must go on <android_sdk_path>/platform-tools directory on your computer. In this article, you’re going to learn the handy adb commands which are…
Continue Reading
Android

Learn to play music with Real Piano Music HD

Google Play Store has a lof ot app to play musics but some are better than others. Real Piano Music HD can be considered as one of the best application to learn to play music on your Android device. Freely available on Google Play Store here : ;rdid= , Real Music Piano HD comes with an elegant and intuitive interface offering…
Continue Reading
Android

Learn how to make a Compass application for Android

Smartphones have a lot of sensors letting to developers to take profit in their applications. Make a Compass application for Android is a great way to understand how they work on Android OS. To make that Compass application, we're going to use mainly accelerometer sensor. Location service will be also used to fix compass data and also to display GPS…
Continue Reading
Android

Learn to create a Pie Chart in Android with MPAndroidChart

In the serie exploring MPAndroidChart, today you're going to learn how to create a pie chart in Android. A Youtube demo video how you steps by steps how to create a pie chart in Android with MPAndroidChart : Note that MPAndroidChart is open source and available here on Github :  . Source code for MainActivity is the following : package ;…
Continue Reading
Android

Create a frame animation in XML on Android

Android offers to developers a great Animation API that lets them to create easily frame animation in XML or programmatically. In the following tutorial, you’re going to learn how to create a frame animation in XML. For this tutorial, we’re going to use a monster character that we want to animate. Get the frames of the monster’s animation The following…
Continue Reading
Android

Create a real time line graph in Android with MPAndroidChart

In the serie "create a real time line graph on Android", MPAndroidChart seems to be the best solution. Library is designed for Android 5 Lollipop and rendering is great. MPAndroidChart is open source an available here on Github :  . Developer is very active and answers quickly to issues created by users. The following video shows how to create a…
Continue Reading
Android

Learn to make a frame animation with a character sprite in Android

Android provides a convenient way to make frame animation via XML or programmatically. API is very clear and powerful. In the following example, we’re going to animate a character sprite programmatically via this API. Character sprite bitmap First, we need to get a character sprite bitmap. Here, we choose the classic grossini dance : Each frame has the following dimensions…
Continue Reading
Articles

Tips and Tricks to master Android Emulator with keyboard shortcuts inside

Use the Android Emulator lets developers to test their apps on different devices configurations. Functionalities are large but it’s well known : without mastering, powerful is nothing ! In this article, we’re going to see tips and tricks to master Android Emulator. A table with keyboard shortcuts will be also provided to make your life easier. Tips on using Android…
Continue Reading