Back to project page fruit.thememanager.
The source code is released under:
Apache License
If you think the Android project fruit.thememanager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fruit.thememanager.helper; /*from w ww . j a va 2s . c om*/ import java.util.ArrayList; import android.content.Context; public abstract interface ThemeInfoLoader { public abstract ThemeInfo loadThemeInfo(Context context, String themePkgName); public abstract ArrayList<ThemeInfo> loadInstalledThemes(Context context, String themeCategory); }