Blocking Incomming Calls in Android Smart Phone

We want to blocks all incomming calls in android phone. Create new project and extand it main class from BroadCast ...
Read more
Timer in Android

public class Timer extends Activity { private TextView tv; private int cc=0; private java.util.Timer timr; @Override public void onCreate(Bundle savedInstanceState) ...
Read more
How to read all contacts of android phone

In this tutorial we simply display the name of all Contacts which are saved at our phone . package com.example.contactslist; ...
Read more
Content Provider to load all images in Set as wallpaper in Android

res/layout/main.xml sec/java/mainactivity.java ….package com.example.allimagespath; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import android.net.Uri; import android.os.Bundle; ...
Read more
Customized Query to access Contents of android phone

Cursor cursor = managedQuery(Uri, null, null, null, null); First parameter are used for what you want to access there are ...
Read more
Content Provider in Android

An android we used File , Data Base for Stored data permanently. These file and Database are accessible only to ...
Read more
Play Audio in Android

There are used Media Player class for playing audio file in android Programmatically . You can play audio file of ...
Read more
How to add and remove data from Android Emulator Sd Card

First of all open Eclipse and go to DDMS menu . After that select File Explorer and open Sd card ...
Read more
How to install APK on Android Phone/Emulator from PC

Some time we want to install any APK on Emulator or Android phone directly form PC . For doing this ...
Read more
Android Content Provider

Content Provider used for Shared data of Android Mobile . Which are easily accessible from every Application of Android. Following ...
Read more