Xamarin Forms:如何捕获在页面上花费的时间

Xamarin Forms: How to capture the time spend on a page

我需要捕获用户在我的应用程序页面上花费的时间。

我希望时间是时:分:秒。

使用它我可以跟踪用户活动。我做了一些研究,但没有发现任何有用的东西。

有什么方法可以跟踪用户在页面上花费的时间吗?

使用 Stopwatch

Stopwatch timer;

protected override void OnAppearing()
{
  timer = new Stopwatch();
  timer.Start();
}

protected override void OnDisappearing()
{
  timer.Stop();
  TimeSpan ts = timer.Elapsed;

  string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}",
            ts.Hours, ts.Minutes, ts.Seconds);
}