Setting Request Priority Volley

前端 未结 2 858
夕颜
夕颜 2021-02-13 15:38

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         


        
2条回答
  •  醉梦人生
    2021-02-13 15:55

    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;
            }
        };
    

提交回复
热议问题