BatteryMonitoringEnabled
在访问电池信息之前,我设置为 True。
文档说只有在没有启用监控的情况下才应该返回 -1 。
但是,尽管我启用了监视,但我总是将 -1 作为BatteryLevel
property 的值,将 Unknown 作为。BatteryState
UIDevice.CurrentDevice.BatteryMonitoringEnabled=true;
Console.WriteLine (UIDevice.CurrentDevice.BatteryLevel.ToString());
结果-1
Console.WriteLine (UIDevice.CurrentDevice.BatteryState.ToString());
结果“未知”
我在这里缺少什么吗?