Android Open Source - rally Core Volley






From Project

Back to project page rally.

License

The source code is released under:

Apache License

If you think the Android project rally listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
* Copyright (C) 2014 Zeplin/*from  www . j ava 2s  . c  o  m*/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.zeplin.rally.network;

import android.content.Context;

import com.android.volley.RequestQueue;
import com.android.volley.toolbox.ImageLoader;
import com.android.volley.toolbox.Volley;

public class CoreVolley {

    private static CoreVolley ourInstance = new CoreVolley();
    public static CoreVolley getInstance() {
        return ourInstance;
    }

    private RequestQueue sRequestQueue;
    private ImageLoader sImageLoader;

    public RequestQueue getRequestQueue(Context context) {
        return sRequestQueue == null ? sRequestQueue = Volley.newRequestQueue(context) : sRequestQueue;
    }

    public ImageLoader getImageLoader(Context context) {
        return sImageLoader == null ? sImageLoader = new ImageLoader(getRequestQueue(context), new CoreBitmapLruCache()) : sImageLoader;
    }
}




Java Source Code List

io.zeplin.rally.application.CoreBaseApplication.java
io.zeplin.rally.network.CoreBaseRequest.java
io.zeplin.rally.network.CoreBitmapLruCache.java
io.zeplin.rally.network.CoreGsonRequest.java
io.zeplin.rally.network.CoreVolley.java
io.zeplin.rally.toolbox.CoreVolleyUtil.java
io.zeplin.rally.toolbox.MFieldNamingStrategy.java