All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.andromedaioc.resource.loader.ArrayResourceLoader Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.resource.loader;

import android.content.Context;
import net.sf.andromedaioc.resource.ResourceIdentifier;

public class ArrayResourceLoader extends AbstractAndroidResourceLoader {

    public ArrayResourceLoader(Context context) {
        super(context);
    }

    public Object loadResource(ResourceIdentifier resourceIdentifier) {
        return getContext().getResources().getStringArray(resourceIdentifier.getId());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy