Android
Android Core Building Blocks
An android component is simply a piece of code that has a well defined life cycle e.g. Activity, Receiver, Service etc. The core building blocks…
Android Web Service
Creating web service application in android is not a difficult task. We can easily create a restful web service application in android to authenticate or…
Android Animation
Android provides a large number of classes and interface for the animation development. Most of the classes and interfaces are given in android.animation package. Android…
Android Graphics
The android.graphics.Canvas can be used to draw graphics in android. It provides methods to draw oval, rectangle, picture, text, line etc. The android.graphics.Paint class is…
Sensor Tutorial
Sensors can be used to monitor the three-dimensional device movement or change in the environment of the device. Android provides sensor api to work with…
Camera Tutorial
Camera is mainly used to capture picture and video. We can control the camera by using methods of camera api. Android provides the facility to…
List Paired Devices
The getBoundedDevices() method of BluetoothAdapter class provides a set containing list of all paired or bounded bluetooth devices. In this example, we are checking if…
Bluetooth Tutorial
Bluetooth is a way to exchange data with other devices wirelessly. Android provides Bluetooth API to perform several tasks such as: scan bluetooth devices connect…
Send Email
We can easily send email in android via intent. You need to write few lines of code only as given below Intent email = new Intent(Intent.ACTION_SEND); email.putExtra(Intent.EXTRA_EMAIL, new String[]{ to}); email.putExtra(Intent.EXTRA_SUBJECT, subject); email.putExtra(Intent.EXTRA_TEXT, message);…