It looks like you are using ArcGIS maps. Please use the code example below to set the zoom level when starting maps.
<com.esri.android.map.MapView android:id="@+id/map" android:layout_width="fill_parent" android:layout_height="fill_parent" mapoptions.MapType="Topo" mapoptions.ZoomLevel="13" mapoptions.center="33.666354, -117.903557" />
You can also set the activity file,
MapOptions options = new MapOptions(MapType.TOPO, 23, -110, 9);
Let me know if this works for you.
source share