Archives for Tutorials - Page 4

Android

Rediscover the joys of Tetris on Android

Do you remember Tetris the famous game of your childhood ? I’m sure that you have played during long hours to Tetris. Today, you are going to rediscover the joys of this classical game on your Android smartphones and tablets. Tetris Falling Blocks is an addictive puzzle game in which you must combine blocks to make complete lines to gain the…
Continue Reading
Java

Create your own Blockchain in 30 minutes

The Blockchain is a technological revolution at the heart of the success of Bitcoin and other crypto currencies. For some, the Blockchain is a revolution comparable to what the Internet was in its day. In this article, we propose you to create your own Blockchain in 30 minutes by using the Java programming language. It will allow you to better…
Continue Reading
Android

Recreate Conway’s Game of Life on Android

The Game of Life is a famous cellular automaton created by the British John Horton Conway in 1970. The Game of Life is considered a zero-player game because the evolution is determined by its initial state, requiring no further input. A player interacts with the Game of Life by creating an initial configuration. Then, you have just to observe the evolution…
Continue Reading
Android

Create a Hexadecimal Color Clock Application for Android

In that tutorial, you are going to learn how to create a Hexadecimal Color Clock Application for Android. But first, what is a Hexadecimal Color Clock Application ? A Hexadecimal Color Clock represents the time as a hexadecimal color and applies this color to the background. Note also that a hexadecimal color is a six digit representation of a color. It…
Continue Reading
Android

Load an External Web Site in a WebView on Android

In that tutorial, you are going to learn how to load an external web site into your Android application with Android Studio. To load an external web site into an Android Application, we are going to use the WebView component available in the Android SDK. Note that you can discover this tutorial in video on YouTube :   The first thing…
Continue Reading
Android

Create a Bitcoin Price Index Watcher Application for Android

Bitcoin is a worldwide cryptocurrency and digital payment system called the first decentralized digital currency, since the system works without a central repository or single administrator. In that tutorial, we are going to create a Bitcoin Price Index Watcher Application for Android with Android Studio. In this application, we will offer to the users Bitcoin Price Index in US Dollars,…
Continue Reading
Android

Learn to create a System Keyboard on Android

In that tutorial, you are going to learn how to create your own System Keyboard on Android with Android Studio. A System Keyboard could be used in any application that a user has installed on his phone. Note that you can also discover this tutorial in video on YouTube :   Layout for the Keyboard The first thing to make is to…
Continue Reading
Android

Learn to create an Anagram Game for Android

In that tutorial, you are going to learn how to create an Anagram game for Android by using Android Studio. But what is an Anagram ? An anagram is direct word switch or word play, the result of rearranging the letters of a word or phrase to produce a new word or phrase, using all the original letters exactly once; for…
Continue Reading
Android

Learn to get Memory Info at runtime on Android

In that tutorial, you are going to discover how to get Memory Information concerning a smartphone or tablet on Android. In an Android application, you can get information concerning : The available memory on the system The total memory accessible by the kernel The maximum number of bytes the heap can expand to The current number of bytes taken by the…
Continue Reading