Here you can find the source of getRawInteger(Context c, int resId)
public static int getRawInteger(Context c, int resId)
//package com.java2s; import android.content.Context; public class Main { public static int getRawInteger(Context c, int resId) { return c.getResources().getInteger(resId); }/* w w w . ja v a 2 s .c om*/ }