数据使用情况应用程序数据使用情况
我做了一个 Android 应用程序,用于获取总数据使用情况和每 24 小时一次的每个应用程序数据使用情况。
应用程序数据使用情况:
CODE: SELECT ALL
long recv = TrafficStats.getUidRxBytes(uID);
long sent = TrafficStats.getUidTxBytes(uID);
总数据使用情况:
CODE: SELECT ALL
ong recv = TrafficStats.getTotalRxBytes();
long sent = TrafficStats.getTotalTxBytes();
但是,“应用程序使用情况”报告的数据使用情况总和大于总体“总数据使用情况”值。
这里的确切原因/问题是什么?
I have done one Android application for getting total data usage and each application data usage every 24 hours once.
Application data usage:
CODE: SELECT ALL
long recv = TrafficStats.getUidRxBytes(uID);
long sent = TrafficStats.getUidTxBytes(uID);
Total Data Usage:
CODE: SELECT ALL
ong recv = TrafficStats.getTotalRxBytes();
long sent = TrafficStats.getTotalTxBytes();
But, the summation of data usage reported by the 'App Usage' is greater than overall 'total dataUsage' values.
What is the exact reason/problem here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自以下链接页面中的评论:
http://code.google.com/p/android/issues/detail ?id=20971
此外,如果您在“TrafficStats”上进行问题搜索,您可能会注意到,随着时间的推移,开发人员正在失去准确监控数据使用情况的能力。
我对这个障碍感到非常沮丧。
From a comment in the page linked below:
http://code.google.com/p/android/issues/detail?id=20971
Additionally, if you do an issue search on 'TrafficStats' you may notice that as time goes by developers are losing the ability to accurately monitor data usage.
I have been greatly frustrated by this handicap.