Monday, 25 July 2016

TTS(Text to Speech) in Android



TTS define Text To speech. Android provides TextToSpeech functionality from API level 4.

TextToSpeech  is in package android.speech.tts.

Here is how to work with text to speech functionality in android.

  • Create a Project.

  • Create an Activity like I created MainActivity.java.

  • Implement interface TextToSpeech.OnInitListener

Read more about TTS(Text to Speech) in Android visit Findnerd.

Sunday, 17 July 2016

8 Easy Steps to create Custm Keyboard in Android

screen-5.jpeg

This is very important tutorial through which, we will learn how to create a custom keyboard without using third party library in the android application. This tutorial fully customizes device keyboard. We will go step by step to learn this process.

Custom keyboard process provides full customization of your device keyboard. Through this tutorial, you can set device keyboard wallpaper, change keyboard themes, change keyboard key background color etc.

  • Create two directory colors.xml and strings.xml inside res/values/colors.xml

  • Create a parent directory resource xml under res/xml and put following two more child directory resource method.xml and qwerty.xml.

Read more about 8 Easy Steps to create Custm Keyboard in Android visit Findnerd.