HealthKitUI Namespace
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
O namespace HealthKitUI fornece o ActivityRingView que exibe informações do HealthKit.
Classes
HKActivityRingView |
Um UIView que mostra os dados em um T:HealthKit.HKSummary. |
HKActivityRingView.HKActivityRingViewAppearance |
Classe de aparência para objetos do tipo HKActivityRingView. |
Comentários
Os desenvolvedores podem definir os valores dentro do HKActivityRingView usando um HKActivitySummary objeto , conforme mostrado no exemplo a seguir:
var view = new HKActivityRingView (new CGRect (10, 10, 200, 200));
var summary = new HKActivitySummary ();
//Outer ring (Red)
summary.ActiveEnergyBurnedGoal = HKQuantity.FromQuantity (HKUnit.Kilocalorie, 200.0);
summary.ActiveEnergyBurned = HKQuantity.FromQuantity (HKUnit.Kilocalorie, 150.0);
//Middle ring (Green)
summary.AppleExerciseTime = HKQuantity.FromQuantity (HKUnit.Hour, 0.5);
summary.AppleExerciseTimeGoal = HKQuantity.FromQuantity (HKUnit.Hour, 1.0);
//Inner ring (Blue)
summary.AppleStandHours = HKQuantity.FromQuantity (HKUnit.Count, 2);
summary.AppleStandHoursGoal = HKQuantity.FromQuantity (HKUnit.Count, 8);