There is activity, fragment and a viewmodel binded to them both. Fragment has event which gets raised multiple times by Timer, delegate inside fragment is subscribed to that event and updates single UI element with value from a viewmodel.
Delegate:
private void OnTimerUpdate(object o, EventArgs e) {
this.Activity.RunOnUiThread(() => {TimerTextView.Text = ViewModel.TimerValue;});
}
It is called multiple times as planned, however ui element is not updating, unless I'm interacting with a View (e.g. scrolling). Previously both ui element and delegate was inside activity and was working properly, however when I refactored it to have separate fragment, this happened.