Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.content.res.Resources;

public class Main {
    private static String photo = "photo_";

    public static int getPeripheralsLeftIconResourceId(Resources resources, String drawableName, Context context) {
        return resources.getIdentifier(photo + drawableName.toLowerCase(), "drawable", context.getPackageName());
    }
}