Merge pull request #24 from xamarin/fix-bugzilla39742

[Android] SendAppearing on resuming fragment
This commit is contained in:
Samantha Houts 2016-03-29 10:07:09 -07:00
Родитель dad4396de9 9c550ed47a
Коммит 0e03738ade
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -107,5 +107,11 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
Page?.SendDisappearing();
base.OnPause();
}
public override void OnResume()
{
Page?.SendAppearing();
base.OnResume();
}
}
}