我最近开始学习 android,在我目前的项目中,我需要计算每天、每周、每月的 3G 和 WiFi 互联网流量。现在我可以发现:
long totalRecievedBytes = TrafficStats.getTotalRxBytes();
long totalTransmittedBytes = TrafficStats.getTotalTxBytes();
字符串 allTraffic = humanReadableByteCount(totalRecievedBytes + totalTransmittedBytes);
TextView tv = (TextView) findViewById(R.id.traffic_3g_all);
tv.setText(allTraffic);
我见过 netcounter 应用程序,它将所有流量数据写入手机的内存。启动时从内存中读取流量数据。
有哪些方法可以收集有关每日、每周、每月的 3G、WiFi 互联网流量使用情况的信息?
谢谢,任何答案表示赞赏。