Android Context Get getRawInteger(Context c, int resId)

Here you can find the source of getRawInteger(Context c, int resId)

Description

get Raw Integer

Declaration

public static int getRawInteger(Context c, int resId) 

Method Source Code

//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*/
}

Related

  1. getVersionName(Context context)
  2. getBitmapFromAssert(Context thisContext, String name)
  3. getString(Context context, int id)
  4. getString(Context context, int resId, Map replacement)
  5. getStringFromXml(Context context, int resId)