MapView mapView = new MapView(this, 256); //constructor
mapView.setClickable(true);
mapView.setBuiltInZoomControls(true);
setContentView(mapView); //displaying the MapView
mapView.setTileSource(TileSourceFactory.MAPQUESTOSM);
mapView.getController().setZoom(15);
mapView.getController().setCenter(new GeoPoint(mLat, mLon));
mapView.setUseDataConnection(true);
mapView.setMultiTouchControls(true);
I have made an offline map with Atlas creator using OSMDroid MapQuest
I have placed zip file inside Sdcard inside "osmdroid" folder.
But
When i run my android application there is excetion that
**fail to read directory
and showing "blank map" on my android device
Please please help.