Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用Vuforia Cloud Recognition for android。我收到“网络请求已超时,请检查您的互联网连接并重试。” 每当我在3G/2G 互联网连接中使用,但如果我在Wi-Fi 网络中使用它工作正常。
是否有可能更改网络请求时间?或使它工作的替代方法是什么..?请帮助我们 ...
您可以像这样设置超时:
HttpParams params = httpClient.getParams(); HttpConnectionParams.setSoTimeout(params, 17000); //Waiting time 17 sec(Time in milis) ConnManagerParams.setTimeout(params, 10000); //10 seconds