I\'m retrieving the content of a invalid web address with volley, i.e. http://www.gigd32fdsu.com:
This is my test code:
// Instantiate the Reque
Just override the parseNetworkResponse method then take the statusCode value.
public class StrImplRequest extends StringRequest {
@Override
protected Response parseNetworkResponse(NetworkResponse response) {
// take the statusCode here.
response.statusCode;
return super.parseNetworkResponse(response);
}
}