超时错误凌空

时间:2016-03-09 10:38:03

标签: android xampp

我尝试使用Samsung连接localhost。我使用Volley来发布帖子请求。

以下是我的网址字符串。

public static final String requestUrl = "http://10.0.2.2/export/mobileapi.php"

我当然设置了超时值,如下所示,

private void setRetryCount(JsonObjectRequest jsonObjectRequest) {
        jsonObjectRequest.setRetryPolicy(new RetryPolicy() {
            @Override
            public int getCurrentTimeout() {
                return 50000;
            }

            @Override
            public int getCurrentRetryCount() {
                return 50000;
            }

            @Override
            public void retry(VolleyError error) throws VolleyError {

            }
        });
    }

但我仍然没时间错误

0 个答案:

没有答案