我已經搜索了很多關於這個。部分地找到解決目的的相同的代碼。正如API文檔所述,一旦設備重新啓動,它就會重置計數器。有時,即使沒有重新啓動,計數器也會重置。以下是密碼如何獲取1個月的GPRS移動數據使用情況?
float totalRxBytes = (float)TrafficStats.getTotalRxBytes()/(float)1048576; // Received
float totalTxBytes = (float)TrafficStats.getTotalTxBytes()/(float)1048576; // Sent
float mobRxBytes = (float)TrafficStats.getMobileRxBytes()/(float)1048576;
float mobTxBytes = (float)TrafficStats.getMobileTxBytes()/(float)1048576;
float wifiRxBytes = totalRxBytes - mobRxBytes;
float wifiTxBytes = totalTxBytes - mobTxBytes;
但我想不出有什麼辦法讓這些數據從特定的日期或一個月?請幫忙。任何指針將不勝感激。 謝謝。
請指點一下嗎? – Bharat
你可能會在這裏找到答案http://stackoverflow.com/a/7640565/6689101 – zombie