I have a list view containing names.I am able to add those names to phones’s contact list but the changes are not getting reflected in my list view untill I restart the application again.kindly help.thanks in advance.
I have tried this but ain’t working.
public void onPause(){
super.onPause();
finish();
}
Repopulate your listview in onResume() of your activity,so that changes will appear in your listview after you will add new data.