Java tutorial
//package com.java2s; import android.content.Context; public class Main { /** * Returns true if the activity type is in the list. * * @param context the context * @param activityType the activity type * @param list the list */ private static boolean inList(Context context, String activityType, int[] list) { for (int i : list) { if (context.getString(i).equals(activityType)) { return true; } } return false; } }