【发布时间】:2015-09-03 19:21:15
【问题描述】:
为什么 Volley 通常会和 okHttp 结合使用?为什么会这样?
例如:
OkHttpClient client = new OkHttpClient();
client.networkInterceptors().add(new StethoInterceptor());
mRequestQueue = Volley.newRequestQueue(context, new OkHttpStack(client));
【问题讨论】:
标签: android android-volley okhttp