I generate a geometry from a current view extent and create a layer via LayerFactory. Then, I select features in the that intersects with the created the geometry.
AGP zoom out all the way the layer extent and does not zoom back into the geometry extent. It happens only right after creating the layer. Afterwards, it works fine when layer does not need to be created again.

Here is the code
QueuedTask.Run(() =>
{
Envelope currentExtent = MapView.Active.Extent;
Geometry currentExtGeo = currentExtent.Clone();
var sq = new SpatialQueryFilter() { FilterGeometry = currentExtGeo,
SpatialRelationship = SpatialRelationship.Intersects };
CalledFlayer = LayerFactory.Instance.CreateLayer(CalledUri,
MapView.Active.Map, 0, CalledFLayerName) as FeatureLayer;
CalledFlayer.ClearSelection();
CalledFlayer.SetVisibility(true);
CalledFlayer.Select(sq);
MapView.Active.ZoomTo(currentExtGeo);//Supposed go back into original
//extent here but no
});