Don't set visible by default
This commit is contained in:
parent
0d2c83654b
commit
d6df309f0a
1 changed files with 1 additions and 4 deletions
|
@ -138,7 +138,6 @@ public class MapActivity extends AccessibleActivity {
|
||||||
parseLaunchIntentLocation();
|
parseLaunchIntentLocation();
|
||||||
|
|
||||||
if(settings.USE_NATIVE_RENDER.get() && NativeQtLibrary.isInit()) {
|
if(settings.USE_NATIVE_RENDER.get() && NativeQtLibrary.isInit()) {
|
||||||
findViewById(R.id.MapView).setVisibility(View.GONE);
|
|
||||||
glSurfaceView = (GLSurfaceView) findViewById(R.id.glSurfaceView);
|
glSurfaceView = (GLSurfaceView) findViewById(R.id.glSurfaceView);
|
||||||
glSurfaceView.setVisibility(View.VISIBLE);
|
glSurfaceView.setVisibility(View.VISIBLE);
|
||||||
OsmAndMapLayersView ml = (OsmAndMapLayersView) findViewById(R.id.MapLayersView);
|
OsmAndMapLayersView ml = (OsmAndMapLayersView) findViewById(R.id.MapLayersView);
|
||||||
|
@ -147,8 +146,6 @@ public class MapActivity extends AccessibleActivity {
|
||||||
mapView = ml.getMapView();
|
mapView = ml.getMapView();
|
||||||
mapView.setMapRender(NativeQtLibrary.getMapRenderer());
|
mapView.setMapRender(NativeQtLibrary.getMapRenderer());
|
||||||
} else {
|
} else {
|
||||||
findViewById(R.id.MapLayersView).setVisibility(View.GONE);
|
|
||||||
findViewById(R.id.glSurfaceView).setVisibility(View.GONE);
|
|
||||||
OsmAndMapSurfaceView surf = (OsmAndMapSurfaceView) findViewById(R.id.MapView);
|
OsmAndMapSurfaceView surf = (OsmAndMapSurfaceView) findViewById(R.id.MapView);
|
||||||
surf.setVisibility(View.VISIBLE);
|
surf.setVisibility(View.VISIBLE);
|
||||||
mapView = surf.getMapView();
|
mapView = surf.getMapView();
|
||||||
|
|
Loading…
Reference in a new issue