At the moment i´m using mRequestQueue.cancelAll(getActivity()) at on stop method in a fragment but apparently when i move the phone from landscape to portrait it is still re
In Case Of Fragment; Use only One RequestQueue rQueue; Initialize it in OnCreate method; And use it for all volley request; and at the end
RequestQueue rQueue;
OnCreate method;
@Override
public void onStop () { super.onStop(); if (rQueue != null) { rQueue.cancelAll(this); } }