编程语言
首页 > 编程语言> > android-StrictMode java.lang.Throwable:检测到未标记的套接字

android-StrictMode java.lang.Throwable:检测到未标记的套接字

作者:互联网

在启用StrictMode的情况下,我刚刚开始遇到此异常:

java.lang.Throwable: Untagged socket detected; use TrafficStats.setThreadSocketTag() to track all network usage

解决方法:

我的解决方案是要求初始化以下内容:

private static final int THREAD_ID = 10000;
TrafficStats.setThreadStatsTag(THREAD_ID);

标签:android-strictmode,android,android-trafficstats
来源: https://codeday.me/bug/20191110/2014414.html