I have a tabactivity with a mapview inside it

        TabSpec tabSpec2 = mTabHost.newTabSpec("map_tab");
        tabSpec2.setIndicator("Map");
        Intent i = new Intent(ctx, LocationMapView.class);
        tabSpec2.setContent (i);
        mTabHost.addTab(tabSpec2);

This starts up the mapview and loads all the locations from a database
and puts markers on the map.

How do I tell it to reload the markers from the database when the
database locations have changed/inserted/deleted? I have a populate()
method that does this onCreate when mapview is first loaded.
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to