Android examples for App:Resource
get Values Id from resource
/**/*from w w w. java 2 s . c om*/ * Created by slynero at 2:23 on 14-7-18. * Copyright (c) 2014 FineSoft. All rights reserved. */ //package com.java2s; import android.content.Context; public class Main { public static int getValuesId(Context paramContext, String paramString) { return paramContext.getResources().getIdentifier(paramString, "values", paramContext.getPackageName()); } }