Posts

Showing posts from December, 2014

Download Speech to Text Android App:

This Android app. allows you convert your text into voice. Android provides TextToSpeech class for this purpose. In order to use this class, you need to instantiate an object of this class and also specify the initListener. Download Complete Project Download

SRS of e-Healthcare Project

Image
1.              INTRODUCTION January 9, 2013 1.1            Methodology……………………………………………………………………………… 1.2            Purpose…………..………………………………………………………………………… 1.3            Scope ……………………………………………………………………………………………………. 1.4            Definitions, Acronyms and Abbreviations………………………………………………… 1.5            Tools Used………………………………………………………………………………… 1.6            References…………………………………………………………………………………. 1.7            Technologies to be used…………..……………………………………………………….. 1.8          ...

Text To Speech Android App.

Image
                                                                                                                                                                      Before starting  example using Android SDK, you have to make sure that you have setup your Android development environment properly in your system and you you have knowledge with Eclipse IDE. The first step is to create a simple Android Application using Eclipse IDE. Follow the option   File -> New -> Project   and finally select   Android New Application   wizard from the wizard ...

Alarm Manager App in Android

Image
Many a times we want some task to be performed at some later time in future. For Example: In SMS Scheduler we want a SMS to be send at some later time, or Task Reminder in which we want to be reminded  about a task at a particular time, to implement all these things we use AlramManager class.AlarmManager class provides access to the system alarm services. These allow you to schedule your application to be run at some point in the future.  When an alarm goes off, the Intent that had been registered for it is broadcast by the system, automatically starting the target application if it is not already running. Registered alarms are retained while the device is asleep (and can optionally wake the device up if they go off during that time), but will be cleared if it is turned off and rebooted.  The Alarm Manager holds a CPU wake lock as long as the alarm receiver's onReceive() method is executing. This guarantees that the phone will not sleep until you have finish...