I am trying to set the priority of my requests using the Volley library in Android. I cant find out how to set the requests priority.
StringRequest request = new
Heres a quick way to set a priority,
StringRequest request = new StringRequest(Request.Method.GET,"feed URL",volleyListener, volleyErrorListener) { @Override public Priority getPriority() { return Priority.IMMEDIATE; } };