有谁知道,如何从Android设备获取移动数据?我已尝试过此代码,但它只返回当月的数据 - 但我需要更长时间的统计信息(不仅仅是当前月份)
long mobile = TrafficStats.getMobileRxBytes() + TrafficStats.getMobileTxBytes();
Log.d(TAG, "mobile internet: " + mobile / 1024 + " Kb");
有没有办法使用getContentResolver().query
来获取此功能,就像我们收听电话或短信历史一样?