标签: android
如果应用将请求排入VollyeRequestQueue并立即退出(如下所示),队列是否会停止并且不会发送请求?
VollyeRequestQueue
VolleyRequestQueue.getInstance(getApplicationContext()).addToRequestQueue(lastRequest) finish();
在我的测试中,应用程序似乎中止了队列。我该如何避免这种行为?或者什么是确保在应用程序退出时发送网络请求的推荐方法?