Here you can find the source of isThemeInstalled(Context c, String theme)
public static boolean isThemeInstalled(Context c, String theme)
//package com.java2s; import android.content.Context; import android.content.pm.PackageManager; public class Main { public static boolean isThemeInstalled(Context c, String theme) { try {/*from ww w .j a v a 2s.c o m*/ c.getPackageManager().getPackageInfo(theme, PackageManager.GET_ACTIVITIES); return true; } catch (Exception e) { return false; } } }