‘Android’ Posts

 

Android – Text to speech simple example

Read full article  | 1 Comment

  In this article I will show the most simple way to add text to speech abilities to your Android application. Actually that’s the whole code. You just need to create a TextToSpeech object. Notice the constructor takes 2 parameters, the first is the Context Activity extends from. The second is an OnInitListener which you [...]

Read More

Android – Using SQLite DataBase

Read full article  | 2 Comments

Android OS comes with SQLite Database already built-in. This article will explain how to store and draw data. Currently I am working with Android version 2.2. 1. Extend SQLiteOpenHelper SQLiteOpenHelper is the main class responsible for SQLite operations. You will need to extend it. After extending SQLiteOpenHelper, you will need to trigger the super constructor [...]

Read More

Memory Game – Android Application

Read full article  | 48 Comments

This is a very simple card memory game I wrote for Android platform. I’ve attached it complete with source code and resources. Enjoy.   Download Game   Download Source code Screen shots:

Read More