I .add(
new network calls to my Volley Request Queue which I have created as a singleton as suggested. But I always immediately .start()
these network calls. This is always done as an action in an activity or a fragment.
The add
method cannot even be chained into a start
method, like .add(new volley request).start()
So this assumes I am actually managing (or wanting to manage) a network queue somewhere, outside of the way Volley handles its queue, I guess. Should I be sending these things to an IntentService and listening for the IntentService to send a response back to my Fragment/Activity?
queue
isstart
. That explains why some of my breakpoints get triggered twiceonResponse
– Intuitional