Android – Data Backup
Android allows you to backup your application data to remote "cloud" storage, in order to provide a restore point for the application data and settings. You can only backup your…
Android allows you to backup your application data to remote "cloud" storage, in order to provide a restore point for the application data and settings. You can only backup your…
In android, you can define your own custom fonts for the strings in your application. You just need to download the required font from the internet, and then place it…
Android provides the clipboard framework for copying and pasting different types of data. The data could be text, images, binary stream data or other complex data types. Android provides the…
These are the following two ways, in which you can use camera in your application Using existing android camera application in our applicationDirectly using Camera API provided by android in…
Among many ways, Bluetooth is a way to send or receive data between two different devices. Android platform includes support for the Bluetooth framework that allows a device to wirelessly…
There are some practices that you can follow while developing android application. These are suggested by the android itself and they keep on improving with respect to time. These best…
If you want to get suggestions , when you type in an editable text field , you can do this via AutoCompleteTextView. It provides suggestions automatically when the user is…
You can easily control your ringer volume and ringer profile i-e:(silent,vibrate,loud e.t.c) in android. Android provides AudioManager class that provides access to these controls. In order to use AndroidManager class,…
Android has a built in microphone through which you can capture audio and store it , or play it in your phone. There are many ways to do that but…
Animation is the process of creating motion and shape change Animation in android is possible from many ways. In this chapter we will discuss one easy and widely used way…