Saturday 21 July 2012

How to initialize an ArrayList in Android?


ArrayList<String> images_arr =
new ArrayList<String>(){
private static final long serialVersionUID = -1773393753338094625L;
{
add("string1");
add("string2");
add("string3");
add("string4");
}
};

Wednesday 4 July 2012

How to delete a contact in android?


Hello all previously I have shown how to list all contacts in your phone and in another post I showed  how to programatically create a contact in android
In today's tutorial I will show you how to delete a contact in android programatically.

This simple code does that.

Read more
http://www.coderzheaven.com/2012/06/23/delete-contact-android/