I cannot get a new feature to draw immediately after I add it to the offline geodatabase I am using. (It will draw once I pan or zoom) I am looking for a refresh() call but can't find any reference to it. I saw this thread that seems similar and references a refresh() but I can't find it. I am assuming what ever call is necessary to refresh the map drawing I should place it in the onResume() call? @Override
protected void onResume() {
super.onResume();
// Call MapView.unpause to resume map rendering when the activity returns to the foreground.
mMapView.unpause();
//refresh map/layers here?
}