Android中通过资源名称获取对应的ID

//参数1:资源名称 参数3:类型("drawable"或"string")
public static int getResource(String imageName, Context context, String type) {
        int resId = context.getResources().getIdentifier(imageName, type,
                context.getPackageName());
        return resId;
    }


你可能感兴趣的:(Android中通过资源名称获取对应的ID)