TrafficStats 中 getMobileRxPackets 和 getTotalRxBytes 的含义
getMobileRxBytes() 到底是什么意思? 获取通过移动接口接收的总字节数。 从什么时候开始的总数?设备启动,电话拔掉?
还有 getTotalRxBytes 吗? 获取通过所有网络接口接收到的字节总数。 除了移动和WI-FI之外还有哪些接口?如果只有这两个,就可以假设 getTotalRxBytes - getMobileRxBytes = WI-FI 流量?
What exactly means getMobileRxBytes () ?
Get the total number of bytes received through the mobile interface.
Total number since when ? Device boot, phone unplug ?
Also getTotalRxBytes ?
Get the total number of bytes received through all network interfaces.
What interfaces beside mobile and WI-FI ? If only these two, it's okay to assume that
getTotalRxBytes - getMobileRxBytes = WI-FI traffic ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自设备启动以来。因为这些方法实际上是从存储在内存中的虚拟文本文件中获取值,该值将在设备重新启动时重置。
是的。你可以参考android的Networktype来区分。
Since device boot. Because these methods actually get value from virtual text file stored in memory which will be reset when reboot device.
Yes. You may refer to Networktype of android to distinguish.