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

GreaseMonkey usefull APIs

Read full article  | No Comments

Many of the GreaseMonkey users are not familiar with the very useful set of APIs it has to offer. These functions can help you, especially if you are using it for large projects. I will show here a few of the more useful APIs to my taste, you can read the entire API reference in [...]

Read More

Batch Image Resizer

Read full article  | No Comments

I wrote this application so I could resize a batch of photos all at once. The use is very simple. You insert the input image folder and the out put folder. You enter the resizing percentage you wish and press the button. I have implemented this using my own EasyImage for the picture resizing. I [...]

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

Freeware for generating UMLs

Read full article  | 1 Comment

I was looking for a simple freeware for generating UMLs and class diagrams spesifclly. Here is some of the better ones I have found: ArgoUML open source UML modeling tool. StarUml Another cool open source UML modeling tool. hierarchy A freeware by white magic software. AmaterasUML AmaterasUML is an Eclipse plug-in for drawing UML class-diagram, [...]

Read More