如何知道特定SIM卡插槽的移动数据使用情况

时间:2016-01-07 14:10:51

标签: android dual-sim

我正在尝试通过特定的SIM插槽查找数据使用情况。为此,我使用TrafficStats.getMobileRxBytes()方法,但它在双SIM卡设备中完全使用了两个sim。我想要个人SIM的特定数据使用。任何建议将不胜感激。

1 个答案:

答案 0 :(得分:0)

只是提示:您可以执行类似于SIM插槽数据活动事件的操作 TrafficStats.setThreadStatsTag(identifier_tag);

if(TrafficStats.getThreadStatsTag() == SIM1_SLOT){
     int usedBytes = TrafficStats.getMobileRxBytes() 
}else{
    // Sim2 slot
    int usedBytes = TrafficStats.getMobileRxBytes() 
}