it is really strange, many people has asked this question but not even one useful answer
I have a MainActivity class
public class MainActivity extends FragmentActivity implements ActionBar.TabListener
with 3 actionbar tabs (sections 1,2,3) each section has its own fragment in the package
public class FragmentA extends Fragment
public class FragmentB extends Fragment
public class FragmentC extends Fragment
in the FragmentA I have a listView with its arraylist adapter.
in the MainActivity I fetch some data and put it in the sqlite database.
as soon as new data are added to database I want to notify the listview that the dataset is changed and populate the new data
it sounds easy but I have really got stucked in that ! I just want to know how to do this refresh, rebuild, recreate ... what ever it is from MainActivity
if any one can help ? thanks