Notification For Android

Notification are used for Background task interaction with user. When you want to download , upload data to/from server . ...
Read more
SQlLite For Android

Here we add Sqlite Helper class. Which you can used an any project for permanently storage of necessary data. Customize ...
Read more
GLSurfaceView in android

It used for 2D and 3D Graphic animation , gaming and all those app which required 2D or 3D Graphic ...
Read more
How to restore Deleted file in Eclipse

When you develop App and unfortunately some file are deleted from you and you want to recover at the used ...
Read more
How to add Button to the Buttom of Layout

Use Relativ layout and add the button with this attributes The ParentBotton “true” allocate at to the bottom of the ...
Read more
Android Manifest File

It is the main Configuration file of Android Project. Is automatically created with every android project. In this file we ...
Read more
How to store data in share preferences in android

Share Preferences are used for storing some data, like font size, background color are array data. Its also store float ...
Read more
Thread in Android

By default every android application is separate thread which called main thread. If any one want to run any work ...
Read more
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