有谁知道,我怎样才能从 android 设备获取移动数据使用情况?我试过这段代码,但它只返回当月的数据——但我需要这个统计数据更长的时间(不仅仅是当月)
long mobile = TrafficStats.getMobileRxBytes() + TrafficStats.getMobileTxBytes();
Log.d(TAG, "mobile internet: " + mobile / 1024 + " Kb");
有没有办法getContentResolver().query
像我们用来接听电话或短信历史一样使用它?