protected override void OnCreate(Android.OS.Bundle savedInstanceState) { base.OnCreate(savedInstanceState); Title = GetType().GetTitle(); ActionBar.Subtitle = GetType().GetDescription(); ContentView = new BasicPackageManagerView(this); SetContentView(ContentView); string folder = CreateFolder("citypackages"); manager = new CartoPackageManager("nutiteq.osm", folder); ContentView.Menu.Items = BoundingBoxes.List; ContentView.SetBaseLayer(manager); Alert("Choose a city from the menu to download its bounding box"); }